diff --git a/src/components/CustomChart/index.vue b/src/components/CustomChart/index.vue index e9c13db..a785e99 100644 --- a/src/components/CustomChart/index.vue +++ b/src/components/CustomChart/index.vue @@ -75,6 +75,5 @@ export default { diff --git a/src/views/stationOperation/components/MapPane.vue b/src/views/stationOperation/components/MapPane.vue index 7545875..5706da2 100644 --- a/src/views/stationOperation/components/MapPane.vue +++ b/src/views/stationOperation/components/MapPane.vue @@ -236,6 +236,7 @@ +
@@ -420,7 +421,8 @@ export default { markerList: [], // 要在地图上展示的marker列表 showPane: true, - spinLoading: false + spinLoading: false, + maskVisi: false } }, created() { @@ -727,6 +729,7 @@ export default { // 获取数据接收状态列表 async getDataRecieveStatusList() { + this.maskVisi = true this.spinLoading = true try { this.isGettingStatusList = true @@ -736,6 +739,7 @@ export default { userId: this.$store.getters.userInfo.id } ) + this.maskVisi = false this.spinLoading = false if (success) { const statusList = [] @@ -755,6 +759,7 @@ export default { this.$message.error(message) } } catch (error) { + this.maskVisi = false this.spinLoading = false console.error(error) } finally { diff --git a/src/views/stationOperation/components/RealTimeDataChart.vue b/src/views/stationOperation/components/RealTimeDataChart.vue index ca78bef..1f72568 100644 --- a/src/views/stationOperation/components/RealTimeDataChart.vue +++ b/src/views/stationOperation/components/RealTimeDataChart.vue @@ -1,5 +1,5 @@