Discover: sidebarFilter Funnel button ApplyAll done.

This commit is contained in:
chiayin
2023-04-19 16:18:20 +08:00
parent 8f68e47c25
commit 3d5dba4c42
6 changed files with 119 additions and 81 deletions

View File

@@ -294,17 +294,14 @@ export default {
},
async created() {
this.allMapDataStore.logId = this.$route.params.logId;
await this.allMapDataStore.getAllMapData();
await this.allMapDataStore.getAllTrace();
await this.allMapDataStore.getTraceDetail();
this.createCy(this.mapType);
this.allMapDataStore.getFilterParams();
},
mounted() {
// this.isLoading = false;
await this.allMapDataStore.getFilterParams();
this.isLoading = true;
await new Promise(resolve => setTimeout(resolve, 1000));
this.isLoading = false;
},
}
</script>