123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <view>
- <view class="timeBox flex justify-between align-center padding-lr-sm">
- <view class="time">火点侦测摄像机</view>
- </view>
- <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>YTVA00001</text>
- </view>
- <view>
- <text style="width:auto!important">物联网卡号:</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>上海市虹口区塘沽路</text>
- </view>
- </view>
- </view>
- <!-- 处理状态start -->
- <view class="processStatus">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 视频
- </view>
- <view class="padding-lr padding-bottom-lg">
- <video src="" style="width:690rpx;"></video>
- <br><br>
- </view>
- </view>
- <!-- 处理状态end -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
-
- }
- },
- methods: {
-
-
-
- }
- }
- </script>
- <style lang="scss">
-
-
-
- </style>
|