设备登录行值显示

This commit is contained in:
thesai 2021-01-12 23:46:07 +08:00
parent 4adc474b54
commit 2d154f1611

View File

@ -523,10 +523,11 @@ export default {
}
},
switchStationMode(stationCode) {
this.showStation = stationCode;
this.showStation = this.centralizedStationMap[stationCode];
this.setShowStation(this.showStation);
},
setShowStation(stationCode) {
const showStation = this.centralizedStationMap[stationCode];
const nameList = Object.keys(this.$store.state.map.map);
let list = [];
nameList.forEach(item => {
@ -534,8 +535,8 @@ export default {
list = [...list, ...this.$store.state.map.map[item]];
}
});
this.$jlmap.updateShowStation(list, stationCode);
this.$jlmap.setCenter(stationCode);
this.$jlmap.updateShowStation(list, showStation);
this.$jlmap.setCenter(showStation);
},
setStationList(map) {
this.stationList = [];