代码合并

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"
:deviceName="deviceName"
:deviceType="deviceType"
:iotCode="iotCode"
@handelCloseDialog="handelCloseDialog"
/>
</div>
@ -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
},