From d9856230e69ef4474056953353e774d1d0761a91 Mon Sep 17 00:00:00 2001
From: dev_ljl <2590379346@qq.com>
Date: Mon, 4 Aug 2025 10:09:12 +0800
Subject: [PATCH 1/6] =?UTF-8?q?fix:=E4=BA=BA=E5=91=98=E5=8D=95=E4=BD=8D?=
=?UTF-8?q?=E5=8A=A0=E8=BD=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../resident/person/query-unit-list.vue | 38 ++++++++++---------
1 file changed, 21 insertions(+), 17 deletions(-)
diff --git a/apps/web-antd/src/views/property/resident/person/query-unit-list.vue b/apps/web-antd/src/views/property/resident/person/query-unit-list.vue
index d0f6220f..a788c0c3 100644
--- a/apps/web-antd/src/views/property/resident/person/query-unit-list.vue
+++ b/apps/web-antd/src/views/property/resident/person/query-unit-list.vue
@@ -1,35 +1,35 @@
From 6f7c26a5694b474f834d79767fb21ab0dae0076c Mon Sep 17 00:00:00 2001
From: FLL <2162874245@qq.com>
Date: Mon, 4 Aug 2025 10:21:51 +0800
Subject: [PATCH 2/6] =?UTF-8?q?=E8=AE=BF=E5=AE=A2=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../businessManagement/workOrders/workOrders-modal.vue | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue b/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
index 8de52792..b7af6349 100644
--- a/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
+++ b/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
@@ -48,6 +48,7 @@ const {onBeforeClose, markInitialized, resetInitialized} = useBeforeCloseDiff(
},
);
+const recordEdit = ref({});
const [BasicModal, modalApi] = useVbenModal({
// 在这里更改宽度
class: 'w-[70%]',
@@ -69,6 +70,7 @@ const [BasicModal, modalApi] = useVbenModal({
const record = await workOrdersInfo(id);
record.isTimeOut = record.isTimeOut?.toString()
await formApi.setValues(record);
+ recordEdit.value = record;
}
await markInitialized();
@@ -85,6 +87,9 @@ async function handleConfirm() {
}
// getValues获取为一个readonly的对象 需要修改必须先深拷贝一次
const data = cloneDeep(await formApi.getValues());
+ if(isUpdate.value){
+ data.status = recordEdit?.value.status
+ }
await (isUpdate.value ? workOrdersUpdate(data) : workOrdersAdd(data));
resetInitialized();
emit('reload');
From 523810a1dabb5531d02b39491d03d982a5d78055 Mon Sep 17 00:00:00 2001
From: zcxlsm
Date: Mon, 4 Aug 2025 16:55:08 +0800
Subject: [PATCH 3/6] =?UTF-8?q?feat(sis):=20=E5=88=9D=E5=A7=8B=E5=8C=96?=
=?UTF-8?q?=E8=B5=8B=E5=80=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/api/sis/elevatorInfo/model.d.ts | 17 ++-
.../sis/elevatorInfo/elevatorInfo-modal.vue | 133 ++++++++++--------
2 files changed, 87 insertions(+), 63 deletions(-)
diff --git a/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts b/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
index 5fd773eb..c7a38573 100644
--- a/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
+++ b/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
@@ -96,6 +96,17 @@ export interface ElevatorInfoVO {
*/
controlPwd: string
+ elevatorControlDeviceId: {
+ value: number,
+ deviceIp: string,
+ deviceId: number,
+ }
+
+ remoteCallElevatorDeviceId: {
+ value: number,
+ deviceIp: string,
+ deviceId: number,
+ }[]
}
export interface ElevatorInfoForm extends BaseEntity {
@@ -299,9 +310,9 @@ export interface ElevatorInfoQuery extends PageQuery {
}
export interface ElevatorFloorRefVo {
- /**
- *
- */
+ /**
+ *
+ */
elevatorId: string | number
/**
diff --git a/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue b/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
index 3f5d0801..5807619c 100644
--- a/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
+++ b/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
@@ -1,29 +1,29 @@
From 7ad4613fc876384c97f9675f3b6081b6b61da383 Mon Sep 17 00:00:00 2001
From: FLL <2162874245@qq.com>
Date: Mon, 4 Aug 2025 17:06:09 +0800
Subject: [PATCH 4/6] =?UTF-8?q?=E8=AE=BF=E5=AE=A2=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../businessManagement/workOrders/data.ts | 29 +++++++++++++-
.../workOrders/work-orders-detail.vue | 8 ++++
.../workOrders/workOrders-modal.vue | 26 +------------
.../inspectionPoint/inspectionPoint-modal.vue | 28 ++++++++++++-
.../inspectionRoute/data.ts | 12 +++++-
.../inspectionRoute/inspectionRoute-modal.vue | 39 ++++++++++++++++---
6 files changed, 107 insertions(+), 35 deletions(-)
diff --git a/apps/web-antd/src/views/property/businessManagement/workOrders/data.ts b/apps/web-antd/src/views/property/businessManagement/workOrders/data.ts
index e25fafe2..5ecf2907 100644
--- a/apps/web-antd/src/views/property/businessManagement/workOrders/data.ts
+++ b/apps/web-antd/src/views/property/businessManagement/workOrders/data.ts
@@ -24,6 +24,14 @@ export const querySchema: FormSchemaGetter = () => [
fieldName: 'status',
label: '状态',
},
+ {
+ component: 'Select',
+ componentProps: {
+ options: getDictOptions('pro_processing_weight'),
+ },
+ fieldName: 'processingWeight',
+ label: '处理权重',
+ },
];
export const columns: VxeGridProps['columns'] = [
@@ -148,6 +156,15 @@ export const modalSchema: FormSchemaGetter = () => [
componentProps: {},
rules: 'selectRequired',
},
+ {
+ label: '处理权重',
+ fieldName: 'processingWeight',
+ component: 'Select',
+ componentProps: {
+ options: getDictOptions('pro_processing_weight'),
+ },
+ rules: 'selectRequired',
+ },
// {
// label: '状态',
// fieldName: 'status',
@@ -216,9 +233,8 @@ export const modalSchema: FormSchemaGetter = () => [
// },
{
label: '备注',
- fieldName: 'remarkremark',
+ fieldName: 'remark',
component: 'Textarea',
- rules: 'required',
},
// {
// label: '是否超时',
@@ -230,6 +246,15 @@ export const modalSchema: FormSchemaGetter = () => [
// },
// rules: 'selectRequired',
// },
+ {
+ label: '工单图片',
+ fieldName: 'orderImgUrl',
+ component: 'ImageUpload',
+ componentProps: {
+ maxCount: 1,
+ },
+ formItemClass: 'col-span-2',
+ },
];
export const ordersModalSchema: FormSchemaGetter = () => [
{
diff --git a/apps/web-antd/src/views/property/businessManagement/workOrders/work-orders-detail.vue b/apps/web-antd/src/views/property/businessManagement/workOrders/work-orders-detail.vue
index bcd5349b..95c8420c 100644
--- a/apps/web-antd/src/views/property/businessManagement/workOrders/work-orders-detail.vue
+++ b/apps/web-antd/src/views/property/businessManagement/workOrders/work-orders-detail.vue
@@ -77,6 +77,11 @@ async function handleOpenChange(open: boolean) {
{{ orderDetail.compleTime }}
+
+
+
{{ orderDetail.imgUrl }}
+
+ {{ orderDetail.orderImgUrl }}
+
处理记录
diff --git a/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue b/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
index b7af6349..a641283f 100644
--- a/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
+++ b/apps/web-antd/src/views/property/businessManagement/workOrders/workOrders-modal.vue
@@ -62,7 +62,7 @@ const [BasicModal, modalApi] = useVbenModal({
}
modalApi.modalLoading(true);
await queryPersonData()
- await queryWorkOrdersType()
+
const {id} = modalApi.getData() as { id?: number | string };
isUpdate.value = !!id;
@@ -134,30 +134,6 @@ async function queryPersonData() {
}])
}
-async function queryWorkOrdersType() {
- let params = {
- pageSize: 1000,
- pageNum: 1
- }
- const res = await workOrdersTypeList(params)
- const options = res.rows.map((item) => ({
- label: item.orderTypeName,
- value: item.id,
- }));
- formApi.updateSchema([{
- componentProps: () => ({
- options: options,
- filterOption: filterOption,
- showSearch:true,
- }),
- fieldName: 'type',
- }])
-}
-
-const filterOption = (input: string, option: any) => {
- return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
-};
-
diff --git a/apps/web-antd/src/views/property/inspectionManagement/inspectionPoint/inspectionPoint-modal.vue b/apps/web-antd/src/views/property/inspectionManagement/inspectionPoint/inspectionPoint-modal.vue
index aeeabe8a..4b1fd745 100644
--- a/apps/web-antd/src/views/property/inspectionManagement/inspectionPoint/inspectionPoint-modal.vue
+++ b/apps/web-antd/src/views/property/inspectionManagement/inspectionPoint/inspectionPoint-modal.vue
@@ -10,6 +10,7 @@ import { inspectionPointAdd, inspectionPointInfo, inspectionPointUpdate } from '
import { defaultFormValueGetter, useBeforeCloseDiff } from '#/utils/popup';
import { modalSchema } from './data';
+import {workOrdersTypeList} from "#/api/property/businessManagement/workOrdersType";
const emit = defineEmits<{ reload: [] }>();
@@ -53,7 +54,7 @@ const [BasicModal, modalApi] = useVbenModal({
return null;
}
modalApi.modalLoading(true);
-
+ await queryWorkOrdersType()
const { id } = modalApi.getData() as { id?: number | string };
isUpdate.value = !!id;
@@ -91,6 +92,31 @@ async function handleClosed() {
await formApi.resetForm();
resetInitialized();
}
+
+
+async function queryWorkOrdersType() {
+ let params = {
+ pageSize: 1000,
+ pageNum: 1
+ }
+ const res = await workOrdersTypeList(params)
+ const options = res.rows.map((item) => ({
+ label: item.orderTypeName,
+ value: item.id,
+ }));
+ formApi.updateSchema([{
+ componentProps: () => ({
+ options: options,
+ filterOption: filterOption,
+ showSearch:true,
+ }),
+ fieldName: 'type',
+ }])
+}
+
+const filterOption = (input: string, option: any) => {
+ return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
+};
diff --git a/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/data.ts b/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/data.ts
index fc90d78d..db36a106 100644
--- a/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/data.ts
+++ b/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/data.ts
@@ -1,4 +1,4 @@
-import type { FormSchemaGetter } from '#/adapter/form';
+import {type FormSchemaGetter, z} from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
@@ -61,6 +61,16 @@ export const modalSchema: FormSchemaGetter = () => [
component: 'Input',
rules: 'required',
},
+ {
+ label: '巡检点',
+ fieldName: 'pointId',
+ component: 'ApiSelect',
+ componentProps:{
+ mode: 'multiple',
+ },
+ rules: z.array(z.string()).min(1, { message: '请选择' }),
+ formItemClass: 'col-span-2',
+ },
{
label: '备注',
fieldName: 'remark',
diff --git a/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/inspectionRoute-modal.vue b/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/inspectionRoute-modal.vue
index 96c0e4d3..5a223913 100644
--- a/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/inspectionRoute-modal.vue
+++ b/apps/web-antd/src/views/property/inspectionManagement/inspectionRoute/inspectionRoute-modal.vue
@@ -1,14 +1,14 @@
From 98d6dd0d9be9b58de5559099de98f01f65369d33 Mon Sep 17 00:00:00 2001
From: dev_ljl <2590379346@qq.com>
Date: Mon, 4 Aug 2025 17:27:37 +0800
Subject: [PATCH 5/6] =?UTF-8?q?feat:=E5=87=BA=E5=BA=93=E8=AE=B0=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../api/property/assetManage/asset/model.d.ts | 2 +-
.../application/application-modal.vue | 88 +++++----
.../property/assetManage/application/data.ts | 118 ++++++------
.../assetManage/application/index.vue | 61 ++++--
.../assetManage/asset/asset-modal.vue | 23 +--
.../views/property/assetManage/asset/data.ts | 91 +++++----
.../property/assetManage/asset/index.vue | 49 +++--
.../views/property/assetManage/log/data.ts | 177 +++++++++---------
.../views/property/assetManage/log/index.vue | 78 ++++----
9 files changed, 391 insertions(+), 296 deletions(-)
diff --git a/apps/web-antd/src/api/property/assetManage/asset/model.d.ts b/apps/web-antd/src/api/property/assetManage/asset/model.d.ts
index 213c5268..505a3b25 100644
--- a/apps/web-antd/src/api/property/assetManage/asset/model.d.ts
+++ b/apps/web-antd/src/api/property/assetManage/asset/model.d.ts
@@ -59,7 +59,7 @@ export interface AssetVO {
/**
* 固定资产类型
*/
- type: number;
+ type: string;
/**
* 创建时间
diff --git a/apps/web-antd/src/views/property/assetManage/application/application-modal.vue b/apps/web-antd/src/views/property/assetManage/application/application-modal.vue
index 9c9dac78..0ba82bec 100644
--- a/apps/web-antd/src/views/property/assetManage/application/application-modal.vue
+++ b/apps/web-antd/src/views/property/assetManage/application/application-modal.vue
@@ -1,20 +1,25 @@
@@ -161,6 +184,6 @@ function handleDownloadExcel() {
-
+
diff --git a/apps/web-antd/src/views/property/assetManage/log/data.ts b/apps/web-antd/src/views/property/assetManage/log/data.ts
index 142c10c5..96bed83e 100644
--- a/apps/web-antd/src/views/property/assetManage/log/data.ts
+++ b/apps/web-antd/src/views/property/assetManage/log/data.ts
@@ -1,130 +1,137 @@
import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
+import {getDictOptions} from "#/utils/dict";
export const querySchema: FormSchemaGetter = () => [
- {
- component: 'Input',
- fieldName: 'depotId',
- label: '仓库id',
- },
- {
- component: 'Input',
- fieldName: 'assetId',
- label: '资产id',
- },
+ // {
+ // component: 'Input',
+ // fieldName: 'depotId',
+ // label: '仓库id',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'assetId',
+ // label: '资产id',
+ // },
{
component: 'Select',
componentProps: {
+ options:getDictOptions('wy_cklzlx')
},
fieldName: 'type',
label: '流转类型',
},
- {
- component: 'DatePicker',
- componentProps: {
- showTime: true,
- format: 'YYYY-MM-DD HH:mm:ss',
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- },
- fieldName: 'time',
- label: '流转时间',
- },
- {
- component: 'Input',
- fieldName: 'userId',
- label: '操作人id',
- },
- {
- component: 'Input',
- fieldName: 'state',
- label: '状态',
- },
- {
- component: 'Input',
- fieldName: 'price',
- label: '价格',
- },
- {
- component: 'Input',
- fieldName: 'priceSum',
- label: '总价',
- },
- {
- component: 'Input',
- fieldName: 'number',
- label: '数量',
- },
- {
- component: 'Input',
- fieldName: 'supplierId',
- label: '供应商id',
- },
+ // {
+ // component: 'DatePicker',
+ // componentProps: {
+ // showTime: true,
+ // format: 'YYYY-MM-DD HH:mm:ss',
+ // valueFormat: 'YYYY-MM-DD HH:mm:ss',
+ // },
+ // fieldName: 'time',
+ // label: '流转时间',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'userId',
+ // label: '操作人id',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'state',
+ // label: '状态',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'price',
+ // label: '价格',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'priceSum',
+ // label: '总价',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'number',
+ // label: '数量',
+ // },
+ // {
+ // component: 'Input',
+ // fieldName: 'supplierId',
+ // label: '供应商id',
+ // },
];
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
// export const columns: () => VxeGridProps['columns'] = () => [
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
- {
- title: '主键',
- field: 'id',
- },
{
title: '仓库id',
field: 'depotId',
+ minWidth:150,
},
{
title: '资产id',
field: 'assetId',
+ width:180,
},
{
title: '流转类型',
field: 'type',
+ width:120,
+ },
+
+ {
+ title: '数量',
+ field: 'number',
+ width:120,
},
{
title: '流转时间',
field: 'time',
+ width:150,
},
{
title: '操作人id',
field: 'userId',
- },
- {
- title: '状态',
- field: 'state',
+ width:150,
},
{
title: '备注',
field: 'remark',
+ width:180,
},
- {
- title: '价格',
- field: 'price',
- },
- {
- title: '总价',
- field: 'priceSum',
- },
- {
- title: '数量',
- field: 'number',
- },
- {
- title: '供应商id',
- field: 'supplierId',
- },
- {
- title: '创建时间',
- field: 'createTime',
- },
- {
- field: 'action',
- fixed: 'right',
- slots: { default: 'action' },
- title: '操作',
- width: 180,
- },
+ // {
+ // title: '状态',
+ // field: 'state',
+ // width:150,
+ // },
+ // {
+ // title: '价格',
+ // field: 'price',
+ // },
+ // {
+ // title: '总价',
+ // field: 'priceSum',
+ // },
+ // {
+ // title: '供应商id',
+ // field: 'supplierId',
+ // },
+ // {
+ // title: '创建时间',
+ // field: 'createTime',
+ // },
+ // {
+ // field: 'action',
+ // fixed: 'right',
+ // slots: { default: 'action' },
+ // title: '操作',
+ // width: 180,
+ // },
];
export const modalSchema: FormSchemaGetter = () => [
diff --git a/apps/web-antd/src/views/property/assetManage/log/index.vue b/apps/web-antd/src/views/property/assetManage/log/index.vue
index a4767f2e..d0162211 100644
--- a/apps/web-antd/src/views/property/assetManage/log/index.vue
+++ b/apps/web-antd/src/views/property/assetManage/log/index.vue
@@ -135,47 +135,47 @@ function handleDownloadExcel() {
>
{{ $t('pages.common.export') }}
-
- {{ $t('pages.common.delete') }}
-
-
- {{ $t('pages.common.add') }}
-
-
-
-
-
-
- {{ $t('pages.common.edit') }}
-
-
-
- {{ $t('pages.common.delete') }}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 17c7bc0512ccd5984aaabca70c6b45e64dc9ecb5 Mon Sep 17 00:00:00 2001
From: zcxlsm
Date: Mon, 4 Aug 2025 23:31:39 +0800
Subject: [PATCH 6/6] =?UTF-8?q?feat(sis):=20=E7=94=B5=E6=A2=AF=E4=BF=A1?=
=?UTF-8?q?=E6=81=AF=E5=85=B3=E8=81=94=E6=A5=BC=E5=B1=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
apps/web-antd/src/api/property/floor/index.ts | 6 +-
.../src/api/sis/elevatorInfo/model.d.ts | 10 +-
.../src/views/sis/elevatorInfo/data.ts | 2 +-
.../sis/elevatorInfo/elevatorInfo-modal.vue | 96 ++++++++++++++++---
4 files changed, 94 insertions(+), 20 deletions(-)
diff --git a/apps/web-antd/src/api/property/floor/index.ts b/apps/web-antd/src/api/property/floor/index.ts
index 69cee4af..bc47ff77 100644
--- a/apps/web-antd/src/api/property/floor/index.ts
+++ b/apps/web-antd/src/api/property/floor/index.ts
@@ -61,9 +61,9 @@ export function floorRemove(id: ID | IDS) {
}
/**
- * 根据单元ID查询楼层
+ * 根据楼层ID查询楼层
* @param id id
*/
-export function queryByUnitId(id: ID | IDS) {
- return requestClient.get(`/property/floor/queryByUnitId/${id}`);
+export function queryByBuildingId(id: ID | IDS) {
+ return requestClient.get(`/property/floor/queryByBuildingId/${id}`);
}
diff --git a/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts b/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
index c7a38573..0e25360d 100644
--- a/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
+++ b/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
@@ -107,6 +107,11 @@ export interface ElevatorInfoVO {
deviceIp: string,
deviceId: number,
}[]
+
+ /**
+ * 建筑ID
+ */
+ buildingId?: number | string
}
export interface ElevatorInfoForm extends BaseEntity {
@@ -206,10 +211,9 @@ export interface ElevatorInfoForm extends BaseEntity {
controlPwd?: string
/**
- * 单元ID
+ * 建筑ID
*/
- unitId?: number
-
+ buildingId?: number
}
export interface ElevatorInfoQuery extends PageQuery {
diff --git a/apps/web-antd/src/views/sis/elevatorInfo/data.ts b/apps/web-antd/src/views/sis/elevatorInfo/data.ts
index e3c6c2b7..dfbba972 100644
--- a/apps/web-antd/src/views/sis/elevatorInfo/data.ts
+++ b/apps/web-antd/src/views/sis/elevatorInfo/data.ts
@@ -105,7 +105,7 @@ export const modalSchema: FormSchemaGetter = () => [
},
{
component: 'TreeSelect',
- fieldName: 'unitId',
+ fieldName: 'buildingId',
defaultValue: undefined,
label: '社区建筑',
rules: 'selectRequired',
diff --git a/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue b/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
index 5807619c..34dabeef 100644
--- a/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
+++ b/apps/web-antd/src/views/sis/elevatorInfo/elevatorInfo-modal.vue
@@ -1,5 +1,6 @@