From 6b6a9ce33453a5ec9ca8346df39a7a610042424c Mon Sep 17 00:00:00 2001 From: gaosp <gaosp> Date: 星期二, 12 三月 2024 21:38:52 +0800 Subject: [PATCH] 更新地图 --- src/container/mapPreview/Map.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/container/mapPreview/Map.vue b/src/container/mapPreview/Map.vue index 57873e5..b6acc79 100644 --- a/src/container/mapPreview/Map.vue +++ b/src/container/mapPreview/Map.vue @@ -1,7 +1,7 @@ <!-- * @Date: 2024-01-05 23:47:53 * @LastEditors: Sneed - * @LastEditTime: 2024-03-08 09:12:55 + * @LastEditTime: 2024-03-12 20:18:34 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/container/mapPreview/Map.vue --> <template> @@ -16,7 +16,7 @@ :width="v.colspan * height + 'px'" :height="v.rowspan * height + 'px'" v-for="v in item" :rowspan="v.rowspan" :colspan="v.colspan" :key="v.rowIndex + '-' + v.colIndex"> <div class="td-div" :style="{width:v.colspan * height - 2 + 'px',height: v.rowspan * height - 2 + 'px',overflow:'hidden'}"> - <Device @toDetail="toDetail(v)" v-if="v.id" :id="v.id" style="width: 100%;height: 100%;" + <Device @toDetail="toDetail(v)" v-if="v.id" :id="v.id" :deviceList="deviceList" :plantDeviceList="plantDeviceList"></Device> </div> </td> -- Gitblit v1.9.3