fix(高级搜索): 所属模块重置后仍显示勾选记录

--bug=1017026 --user=李玉号 【UI测试】指令编辑-UI列表导入-指令tab页-高级搜索-所属模块重置后仍显示勾选记录
https://www.tapd.cn/55049933/s/1344901
This commit is contained in:
shiziyuan9527 2023-03-02 14:23:27 +08:00 committed by lyh
parent a1f24c112e
commit 6353b39c13
1 changed files with 10 additions and 2 deletions

View File

@ -79,7 +79,7 @@ export default {
// component.init()
this.component.init = this.reload;
//
this.component.reset = this.init;
this.component.reset = this.reset;
},
methods: {
init() {
@ -100,6 +100,12 @@ export default {
})
}
},
reset() {
//
this.init();
//
this.$refs.tree.setCheckedKeys([]);
},
reload() {
//
this.init();
@ -153,7 +159,9 @@ export default {
this.component.value = checkedKeys;
},
changeTreeTag() {
this.$refs.tree.setCheckedKeys(this.component.value);
if (this.component.value) {
this.$refs.tree.setCheckedKeys(this.component.value);
}
},
removeTreeTag(data) {
this.$refs.tree.setChecked(data, false, false);