From fb560c2fce62386f7c6c8d0b0807a154b97de367 Mon Sep 17 00:00:00 2001 From: fyy <2717885210@qq.com> Date: Sun, 14 Sep 2025 14:06:17 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E4=B8=9A=E5=8A=A1?= =?UTF-8?q?=E9=9C=80=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/property/clean/cleanOrders/clean-modal.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/web-antd/src/views/property/clean/cleanOrders/clean-modal.vue b/apps/web-antd/src/views/property/clean/cleanOrders/clean-modal.vue index 98058296..83790aef 100644 --- a/apps/web-antd/src/views/property/clean/cleanOrders/clean-modal.vue +++ b/apps/web-antd/src/views/property/clean/cleanOrders/clean-modal.vue @@ -332,7 +332,7 @@ const [BasicModal, modalApi] = useVbenModal({ for (const item of record.relationList) { for (let i = 0; i < detailTable.value.length; i++) { if (item.cleanId === detailTable.value[i].id) { - detailTable.value[i].area = item.areas; + // detailTable.value[i].area = item.areas; detailTable.value[i].sumPeices = item.sumPrice; } } @@ -446,7 +446,7 @@ const detailColumns = [ customRender: ({ value }: { value: number }) => value === 1 ? '启用' : '禁用', }, - // { title: '保洁面积', dataIndex: 'area', key: 'area' }, + { title: '保洁面积', dataIndex: 'area', key: 'area' }, { title: '合计费用', dataIndex: 'sumPeices', @@ -490,7 +490,6 @@ function handleViewDetail(record: any) { ...record, readonly: true, unitId: currentUnitId.value, - area: record.su, }); detailModalApi.open(); }