diff --git a/src/views/stationOperation/index.vue b/src/views/stationOperation/index.vue index c9ddbc0..f13b438 100644 --- a/src/views/stationOperation/index.vue +++ b/src/views/stationOperation/index.vue @@ -253,8 +253,12 @@ export default { }) this.originalDataList = res // 保留初始版本 this.dataList = cloneDeep(res) - - this.markerList = cloneDeep(res).filter((stationInfo) => stationInfo.stationType !== MarkerType.NuclearFacility) // 去除核设施 + this.markerList = cloneDeep(res).filter((stationInfo) => { + return ( + stationInfo.stationType !== MarkerType.NuclearFacility && + (!this.updataFilterType.length || this.updataFilterType.includes(stationInfo.stationType)) + ) + }) // 去除核设施 this.markerList_clone = cloneDeep(res) this.getDataProvisionEfficiency(this.markerList_clone)