From dc7bb19fd653ee597267ca525aaeab1a217be84c Mon Sep 17 00:00:00 2001 From: zcxlsm Date: Wed, 23 Jul 2025 14:36:51 +0800 Subject: [PATCH] =?UTF-8?q?feat(property):=20=E4=B8=BA=E4=BA=BA=E5=91=98?= =?UTF-8?q?=E5=92=8C=E5=8D=95=E5=85=83=E6=8E=88=E6=9D=83=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=8E=88=E6=9D=83=E6=9C=9F=E9=99=90=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/property/resident/person/data.ts | 16 ++++++++++++++++ .../src/views/property/resident/unit/data.ts | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/apps/web-antd/src/views/property/resident/person/data.ts b/apps/web-antd/src/views/property/resident/person/data.ts index 94cae24d..1a607a93 100644 --- a/apps/web-antd/src/views/property/resident/person/data.ts +++ b/apps/web-antd/src/views/property/resident/person/data.ts @@ -191,6 +191,22 @@ export const modalSchema: FormSchemaGetter = () => [ }, rules: 'selectRequired' }, + { + label: '', + fieldName: 'time', + component: '' + }, + { + label: '授权期限', + fieldName: 'authTime', + component: 'RangePicker', + componentProps: { + showTime: true, + format: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'YYYY-MM-DD HH:mm:ss', + }, + rules: 'required', + }, { label: '通行权限组', fieldName: 'authGroupId', diff --git a/apps/web-antd/src/views/property/resident/unit/data.ts b/apps/web-antd/src/views/property/resident/unit/data.ts index 256a5b7a..07242e71 100644 --- a/apps/web-antd/src/views/property/resident/unit/data.ts +++ b/apps/web-antd/src/views/property/resident/unit/data.ts @@ -174,6 +174,22 @@ export const modalSchema: FormSchemaGetter = () => [ }, rules: 'required', }, + { + label: '', + fieldName: 'time', + component: '' + }, + { + label: '授权期限', + fieldName: 'authTime', + component: 'RangePicker', + componentProps: { + showTime: true, + format: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'YYYY-MM-DD HH:mm:ss', + }, + rules: 'required', + }, { label: '通行权限组', fieldName: 'authGroupId',