1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <view>
- <view class="timeBox flex justify-between align-center padding-lr-sm">
- <view class="time">测试用传装置</view>
- <button class="cu-btn radius bg-offLine sm">
- <view class="radiusStatus offLine"></view>
- 离线
- </button>
- </view>
- <view>
- <!-- 基本信息start -->
- <view class="basic-info">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 基本信息
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>设备类型:</text>
- <text>报警主机</text>
- </view>
- <view>
- <text>设备编号:</text>
- <text>15221</text>
- </view>
- <view>
- <text>物联网卡号:</text>
- <text></text>
- </view>
- <view>
- <text>安装位置:</text>
- <text>物联网开发</text>
- </view>
- <view>
- <text>添加时间:</text>
- <text>2019-05-28 16:12:45</text>
- </view>
- <view>
- <text>设备地址:</text>
- <text>青浦区徐乐路208c幢</text>
- </view>
- </view>
- </view>
- <!-- 基本信息end -->
- <!-- 图表start -->
- <view class="processStatus">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 图表
- </view>
- <view class="info-content" >
- <chart :bindData="staticData"></chart>
- </view>
- </view>
- <!-- 图表end -->
- </view>
- </view>
- </template>
- <script>
- import chart from './components/chart.vue';
- export default {
- components: {
- chart
- },
- data() {
- return {
- staticData: {
- wubao:9,
- unSolve:6,
- truely:20
- },
- }
- },
- onLoad: function(option) {
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- </style>
|