|
@@ -173,7 +173,7 @@ export default {
|
|
|
handleRightClick() {
|
|
|
this.showPopup = true
|
|
|
// 设置选中的专业系统
|
|
|
- this.changeFloor({ gcname: this.currentFloor })
|
|
|
+ this.changeFloor({ gname: this.currentFloor })
|
|
|
},
|
|
|
/**
|
|
|
* 获取电井列表
|
|
@@ -225,7 +225,7 @@ export default {
|
|
|
let { floorsArr } = this
|
|
|
let currentFloor = floorsArr.filter((v) => v.code === chooseFloor)[0]
|
|
|
let floor = {
|
|
|
- FloorId: currentFloor.gcname,
|
|
|
+ FloorId: currentFloor.gname,
|
|
|
FloorName: currentFloor.code,
|
|
|
}
|
|
|
this.$router.push({ name: 'MapView', params: { floor } })
|
|
@@ -259,12 +259,12 @@ export default {
|
|
|
let floorList = this.floorList
|
|
|
floorList.map((item) => {
|
|
|
item.active = ''
|
|
|
- if (item.gcname === data.gcname) {
|
|
|
+ if (item.gname === data.gname) {
|
|
|
item.active = 'active'
|
|
|
}
|
|
|
})
|
|
|
// 弹窗选中的系统
|
|
|
- this.$set(this.modalDataBak, 'floor', data.gcname)
|
|
|
+ this.$set(this.modalDataBak, 'floor', data.gname)
|
|
|
},
|
|
|
changeWellType(data) {
|
|
|
let { wellTypeList } = this
|