From 8b8d808ce4e617d06a5fd17e4af9e8f9632f01e1 Mon Sep 17 00:00:00 2001 From: yuping <82253452@qq.com> Date: Fri, 4 Aug 2023 18:53:25 +0800 Subject: [PATCH] fix bug --- src/components/project/OrgClass.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/project/OrgClass.vue b/src/components/project/OrgClass.vue index d010a9a5..df217301 100644 --- a/src/components/project/OrgClass.vue +++ b/src/components/project/OrgClass.vue @@ -68,7 +68,7 @@ watch(props, () => { function onLoadData(treeNode) { return useArrayRequest(ORG_CHILD_LIST, { keyword: "", orgId: treeNode.id }).then( (r) => { - treeNode.dataRef.treeChildList = r.data; + treeNode.dataRef.treeChildList = r.data.directChildList; options.value = [...options.value]; } );