fix : 修复新增需求征集所属公司选择弹框

This commit is contained in:
2024-06-14 23:17:32 +08:00
parent 58cbceb747
commit 532ef440ce
3 changed files with 131 additions and 149 deletions

View File

@@ -5,7 +5,7 @@ export const matterTree = (array,data, id) => {
array.push(data[i].label);
}
if (data[i].children && data[i].children.length > 0) {
matterTree(data[i].children)
matterTree(array,data[i].children,id)
}
}
return array;