fix: 优化实体下拉卡顿

This commit is contained in:
chenjinsong
2023-09-11 15:16:06 +08:00
parent eb808b1471
commit dcb4880b08
3 changed files with 4 additions and 4 deletions

View File

@@ -351,9 +351,9 @@ export default {
},
mounted () {
this.queryParams = this.getQueryParams()
this.chartGetMap()
this.$nextTick(() => {
setTimeout(() => {
this.chartGetMap()
this.queryRelated()
}, 250)
})

View File

@@ -374,9 +374,9 @@ export default {
},
mounted () {
this.queryParams = this.getQueryParams()
this.chartGetMap()
this.$nextTick(() => {
setTimeout(() => {
this.chartGetMap()
this.getBasicProperties()
this.queryRelated()
}, 250)

View File

@@ -454,10 +454,10 @@ export default {
},
mounted () {
this.queryParams = this.getQueryParams()
this.chartGetMap()
this.getOpenPort()
this.$nextTick(() => {
setTimeout(() => {
this.chartGetMap()
this.getOpenPort()
this.queryRelated()
}, 250)
})