解决弹出抄送人选择框报js错误的bug

This commit is contained in:
luckyxz
2022-06-28 14:52:19 +08:00
parent 69f3c6cc15
commit a34d30c8fb

View File

@@ -398,7 +398,9 @@ export default {
})
})
} else {
this.$refs.userTable.clearSelection();
this.$nextTick(() => {
this.$refs.userTable.clearSelection();
});
}
},
// 关闭标签
@@ -449,7 +451,9 @@ export default {
this.getTreeSelect();
this.getList()
this.userData.open = true;
this.$refs.userTable.clearSelection();
this.$nextTick(() => {
this.$refs.userTable.clearSelection();
});
},
/** 通过任务 */
handleComplete() {