|
@@ -22,9 +22,7 @@
|
|
|
最近上线时间:{{ detail.lastconnecttime || ' --' }}
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="image">
|
|
|
- 图片预留区域
|
|
|
- </view>
|
|
|
+ <preview-image :attinfos="detail.attinfos" />
|
|
|
<view class="ceiling" :style="{ top: tovw(CustomBar) }">
|
|
|
<horizontal-direction ref="hd" />
|
|
|
</view>
|
|
@@ -34,7 +32,6 @@
|
|
|
<control ref="设备控制" :detail="detail" />
|
|
|
<daily-record ref="设备日志" :w_deviceid="w_deviceid" />
|
|
|
<preview ref="详情信息" :detail="detail" />
|
|
|
-
|
|
|
<view style="height: 30px;" />
|
|
|
</My_listbox>
|
|
|
</view>
|
|
@@ -46,10 +43,11 @@ import tabs from "./modules/tabs.vue"
|
|
|
import preview from "./modules/preview.vue"
|
|
|
import dailyRecord from "./modules/dailyRecord.vue"
|
|
|
import control from "./modules/control.vue"
|
|
|
+import previewImage from "./modules/previewImage.vue"
|
|
|
|
|
|
let page = {};
|
|
|
export default {
|
|
|
- components: { horizontalDirection, tabs, preview, dailyRecord, control },
|
|
|
+ components: { horizontalDirection, tabs, preview, dailyRecord, control, previewImage },
|
|
|
name: "facilityD",
|
|
|
data() {
|
|
|
return {
|
|
@@ -168,14 +166,4 @@ export default {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.image {
|
|
|
- width: 355px;
|
|
|
- height: 158px;
|
|
|
- border: 1px solid #ddd;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- margin: 15px auto 0;
|
|
|
-}
|
|
|
</style>
|