feat(property): 为人员和单元授权添加授权期限字段
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
zcxlsm 2025-07-23 14:36:51 +08:00
parent d03743f996
commit dc7bb19fd6
2 changed files with 32 additions and 0 deletions

View File

@ -191,6 +191,22 @@ export const modalSchema: FormSchemaGetter = () => [
}, },
rules: 'selectRequired' 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: '通行权限组', label: '通行权限组',
fieldName: 'authGroupId', fieldName: 'authGroupId',

View File

@ -174,6 +174,22 @@ export const modalSchema: FormSchemaGetter = () => [
}, },
rules: 'required', 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: '通行权限组', label: '通行权限组',
fieldName: 'authGroupId', fieldName: 'authGroupId',