diff --git a/apps/web-antd/src/api/property/rentalPlan/model.d.ts b/apps/web-antd/src/api/property/rentalPlan/model.d.ts index b51af708..8568b515 100644 --- a/apps/web-antd/src/api/property/rentalPlan/model.d.ts +++ b/apps/web-antd/src/api/property/rentalPlan/model.d.ts @@ -77,6 +77,11 @@ export interface RentalPlanForm extends BaseEntity { */ remarks?: string; + /** + * 方案下绿植产品 + */ + productList:any[]; + } export interface RentalPlanQuery extends PageQuery { diff --git a/apps/web-antd/src/api/property/resident/unit/model.d.ts b/apps/web-antd/src/api/property/resident/unit/model.d.ts index 3ea7c440..471f6103 100644 --- a/apps/web-antd/src/api/property/resident/unit/model.d.ts +++ b/apps/web-antd/src/api/property/resident/unit/model.d.ts @@ -29,7 +29,7 @@ export interface Resident_unitVO { /** * 联系电话 */ - phone: number; + phone: string; /** * 入驻位置 @@ -87,7 +87,7 @@ export interface Resident_unitForm extends BaseEntity { /** * 联系电话 */ - phone?: number; + phone?: string; /** * 入驻位置 @@ -140,7 +140,7 @@ export interface Resident_unitQuery extends PageQuery { /** * 联系电话 */ - phone?: number; + phone?: string; /** * 入驻位置 @@ -197,13 +197,15 @@ export interface Unit extends BaseEntity { /** * 联系电话 */ - phone?: number; + phone?: string; /** * 入驻位置 */ location?: string; + locationDetail?: string; + /** * 入驻时间 */ diff --git a/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/data.ts b/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/data.ts index aff9b7eb..03ba2a5a 100644 --- a/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/data.ts +++ b/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/data.ts @@ -69,7 +69,7 @@ export const columns: VxeGridProps['columns'] = [ field: 'rentalPeriod', slots: { default: ({ row }) => { - return renderDict(row.rentalPeriod, 'wy_sjdw'); + return renderDict(row.rentalPeriod, 'wy_time_unit'); }, }, width: 100 diff --git a/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/index.vue b/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/index.vue index b895b77f..61ddcc72 100644 --- a/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/index.vue +++ b/apps/web-antd/src/views/property/greenPlantRentalManagement/orderManagement/index.vue @@ -150,12 +150,12 @@ function handleDownloadExcel() {