Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
wangjiahao 2021-06-21 18:44:00 +08:00
commit 85a7b1fdbe
2 changed files with 2 additions and 2 deletions

View File

@ -439,7 +439,7 @@ export default {
} }
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
this.getTreeData(val) this.getTreeData(val)
}, 500) }, (val && val !== '') ? 500 : 0)
}, },
saveStatus() { saveStatus() {
this.refreshNodeBy(this.saveStatus.sceneId) this.refreshNodeBy(this.saveStatus.sceneId)

View File

@ -443,7 +443,7 @@ export default {
} }
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
this.getTreeData(val) this.getTreeData(val)
}, 500) }, (val && val !== '') ? 500 : 0)
}, },
saveStatus() { saveStatus() {
this.refreshNodeBy(this.saveStatus.sceneId) this.refreshNodeBy(this.saveStatus.sceneId)