diff --git a/apps/web-antd/src/api/property/building/model.d.ts b/apps/web-antd/src/api/property/building/model.d.ts index b4dfa4a8..44ef79cd 100644 --- a/apps/web-antd/src/api/property/building/model.d.ts +++ b/apps/web-antd/src/api/property/building/model.d.ts @@ -29,7 +29,7 @@ export interface BuildingVO { /** * 建筑类型('1:住宅','2:商业','3:混合') */ - buildType: number; + buildType: string; /** * 电梯数量 diff --git a/apps/web-antd/src/api/property/room/model.d.ts b/apps/web-antd/src/api/property/room/model.d.ts index a01052ac..cb62110d 100644 --- a/apps/web-antd/src/api/property/room/model.d.ts +++ b/apps/web-antd/src/api/property/room/model.d.ts @@ -19,7 +19,7 @@ export interface RoomVO { /** * 房间类型('住宅','商铺','办公室','设备间','公共区域') */ - roomType: number; + roomType: string; /** * 建筑面积(平方米) @@ -49,7 +49,7 @@ export interface RoomVO { /** * 状态('空置','已售','已租','自用') */ - status: number; + status: string; } diff --git a/apps/web-antd/src/views/property/building/building-modal.vue b/apps/web-antd/src/views/property/building/building-modal.vue index dc15cef0..0f56dc1a 100644 --- a/apps/web-antd/src/views/property/building/building-modal.vue +++ b/apps/web-antd/src/views/property/building/building-modal.vue @@ -1,15 +1,15 @@