This commit is contained in:
yuping
2023-08-05 14:14:08 +08:00
parent 8b8d808ce4
commit 49e6d82d1b

View File

@@ -68,7 +68,7 @@ watch(props, () => {
function onLoadData(treeNode) { function onLoadData(treeNode) {
return useArrayRequest(ORG_CHILD_LIST, { keyword: "", orgId: treeNode.id }).then( return useArrayRequest(ORG_CHILD_LIST, { keyword: "", orgId: treeNode.id }).then(
(r) => { (r) => {
treeNode.dataRef.treeChildList = r.data.directChildList; treeNode.dataRef.treeChildList = r.directChildList;
options.value = [...options.value]; options.value = [...options.value];
} }
); );