This commit is contained in:
yuping
2023-08-05 15:44:44 +08:00
parent 3cb3f34fcc
commit 1a8836b4d5

View File

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