From 73b2d27fa6d739513a9c15158202f3e81c89573b Mon Sep 17 00:00:00 2001 From: dev_ljl <2590379346@qq.com> Date: Wed, 2 Jul 2025 18:00:26 +0800 Subject: [PATCH 1/2] =?UTF-8?q?1=E3=80=81=E7=A7=9F=E8=B5=81=E8=AE=A2?= =?UTF-8?q?=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/property/rentalPlan/model.d.ts | 5 + .../src/api/property/resident/unit/model.d.ts | 10 +- .../orderManagement/data.ts | 2 +- .../orderManagement/index.vue | 12 +- .../orderManagement/rentalOrder-modal.vue | 137 ++++++++---------- .../views/property/resident/person/data.ts | 18 +-- .../src/views/property/resident/unit/data.ts | 40 ++--- .../property/resident/unit/unit-detail.vue | 2 +- 8 files changed, 108 insertions(+), 118 deletions(-) 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() {