From 49e6d82d1b5f694116c9113946fb1e52badb3582 Mon Sep 17 00:00:00 2001 From: yuping <82253452@qq.com> Date: Sat, 5 Aug 2023 14:14:08 +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 df217301..03a77207 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.directChildList; + treeNode.dataRef.treeChildList = r.directChildList; options.value = [...options.value]; } );