update src/views/system/user/DeptTree.vue 部门树节点过滤不生效

部门树节点过滤不生效

Signed-off-by: 岁月不经谈 <473831241@qq.com>
This commit is contained in:
岁月不经谈 2023-09-05 10:14:42 +00:00 committed by Gitee
parent 881ec67236
commit a1ce9eda2a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -51,6 +51,11 @@ const handleNodeClick = async (row: { [key: string]: any }) => {
}
const emits = defineEmits(['node-click'])
/** 监听deptName */
watch(deptName, (val) => {
treeRef.value!.filter(val)
})
/** 初始化 */
onMounted(async () => {
await getTree()