代码合并
This commit is contained in:
parent
060912bc19
commit
147fa95a7e
|
|
@ -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
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue