From 147fa95a7e898f354ded98a011c42eb6b78be624 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Fri, 9 Aug 2024 10:15:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/warehouseManage/machinery/coding/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sgzb-ui/src/views/warehouseManage/machinery/coding/index.vue b/sgzb-ui/src/views/warehouseManage/machinery/coding/index.vue index e664ca0d..c1c72bd5 100644 --- a/sgzb-ui/src/views/warehouseManage/machinery/coding/index.vue +++ b/sgzb-ui/src/views/warehouseManage/machinery/coding/index.vue @@ -534,6 +534,7 @@ v-if="mapDialogVisible" :deviceName="deviceName" :deviceType="deviceType" + :iotCode="iotCode" @handelCloseDialog="handelCloseDialog" /> @@ -643,6 +644,7 @@ export default { mapDialogVisible: false, deviceName: '', deviceType: '', + iotCode: '', } }, created() { @@ -838,9 +840,11 @@ export default { } }, // 查看设备地图 - handleMap(row) { + async handleMap(row) { this.deviceName = row.specificationType this.deviceType = row.maStatusName + this.iotCode = row.iotCode + this.mapDialogVisible = true },