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