住户信息结构完成

This commit is contained in:
Zy
2026-04-09 18:41:18 +08:00
parent 267a9a5f29
commit 238aa9a400
10 changed files with 1008 additions and 232 deletions

View File

@@ -95,3 +95,10 @@ export function EditHouseApi(data: addHouseType) {
data
});
}
/** 根据小区id获取当前小区的树状结构 */
export function getVillageTree(id: number) {
return request({
url: `/house/villageTree/${id}`,
method: 'GET'
});
}