bugfix zentao 1

This commit is contained in:
lb
2023-09-15 14:30:19 +08:00
parent 27ebe39a96
commit 772a4b0633
29 changed files with 594 additions and 385 deletions

View File

@@ -19,7 +19,6 @@ function step1(tree1) {
.map((item) => ({
prop: item,
label: item,
align: 'center',
children: [],
}));
}
@@ -33,7 +32,6 @@ function step2(firstTierProps, tree2) {
parent.children.push({
label: nd.name,
prop: `${parent.prop}-${nd.name}`,
align: 'center',
});
}
});