diff --git a/src/views/components/progressBar/index.vue b/src/views/components/progressBar/index.vue index 64a334c00..f04c72ab5 100644 --- a/src/views/components/progressBar/index.vue +++ b/src/views/components/progressBar/index.vue @@ -109,12 +109,14 @@ export default { this.percentage = 100; setTimeout(() => { this.show = false; + this.$store.dispatch('app/animationsClose'); }, 1000 / this.fps); }, failed() { this.status = 'exception'; setTimeout(() => { this.show = false; + this.$store.dispatch('app/animationsClose'); }, 1000 / this.fps); } } diff --git a/src/views/newMap/jlmapNew/index.vue b/src/views/newMap/jlmapNew/index.vue index be05734c9..dbe291f31 100644 --- a/src/views/newMap/jlmapNew/index.vue +++ b/src/views/newMap/jlmapNew/index.vue @@ -314,7 +314,6 @@ export default { // 地图视图加载完成 handleViewLoaded() { this.$store.dispatch('map/mapViewLoaded'); - this.$store.dispatch('app/animationsClose'); if (!this.$store.state.training.prdType) { this.mapViewLoaded(false); }