fix(测试跟踪): 多次点击功能用例模块树回收站不显示模块树

--bug=1015672 --user=陈建星 【测试跟踪】回收站列表切换到测试用例列表,点击用例列表的模块,会导致回收站左侧模块丢失 https://www.tapd.cn/55049933/s/1219989
This commit is contained in:
chenjianxing 2022-08-05 14:56:50 +08:00 committed by jianxing
parent b7284701fc
commit 02523e4ef0
1 changed files with 4 additions and 1 deletions

View File

@ -748,7 +748,10 @@ export default {
});
},
enableTrash(data) {
this.trashEnable = data;
this.trashEnable = !data;
this.$nextTick(() => {
this.trashEnable = data;
})
},
enablePublic(data) {
this.publicEnable = !data;