代码合并

This commit is contained in:
BianLzhaoMin 2024-08-09 10:15:58 +08:00
parent 060912bc19
commit 147fa95a7e
1 changed files with 5 additions and 1 deletions

View File

@ -534,6 +534,7 @@
v-if="mapDialogVisible" v-if="mapDialogVisible"
:deviceName="deviceName" :deviceName="deviceName"
:deviceType="deviceType" :deviceType="deviceType"
:iotCode="iotCode"
@handelCloseDialog="handelCloseDialog" @handelCloseDialog="handelCloseDialog"
/> />
</div> </div>
@ -643,6 +644,7 @@ export default {
mapDialogVisible: false, mapDialogVisible: false,
deviceName: '', deviceName: '',
deviceType: '', deviceType: '',
iotCode: '',
} }
}, },
created() { created() {
@ -838,9 +840,11 @@ export default {
} }
}, },
// //
handleMap(row) { async handleMap(row) {
this.deviceName = row.specificationType this.deviceName = row.specificationType
this.deviceType = row.maStatusName this.deviceType = row.maStatusName
this.iotCode = row.iotCode
this.mapDialogVisible = true this.mapDialogVisible = true
}, },