房屋详情,单元变更

This commit is contained in:
Zy
2026-05-21 14:13:28 +08:00
parent 9645412534
commit 38274ab612
68 changed files with 1867 additions and 568 deletions

View File

@@ -26,8 +26,8 @@ export function convertBuildingToTree(buildings: any[]): Tree[] {
const units = building.units || [];
const unitTrees = units.map((unit: any) => {
const unitTree: Tree = {
label: `${unit.unitNo} 单元`,
value: unit.unitNo,
label: unit.unitNoName,
value: unit.unitNoId,
type: 'unitNo',
children: []
};