fix(高级搜索): 所属模块重置后仍显示勾选记录
--bug=1017026 --user=李玉号 【UI测试】指令编辑-UI列表导入-指令tab页-高级搜索-所属模块重置后仍显示勾选记录 https://www.tapd.cn/55049933/s/1344901
This commit is contained in:
parent
a1f24c112e
commit
6353b39c13
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue