asset
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m18s

This commit is contained in:
2025-06-25 09:27:33 +08:00
parent a62d5530b9
commit ec2f257a87
10 changed files with 224 additions and 59 deletions

View File

@@ -112,46 +112,46 @@ export const modalSchema: FormSchemaGetter = () => [
{
label: '资产id',
fieldName: 'assetId',
component: 'Input',
component: 'Select',
},
{
label: '领用人id',
fieldName: 'userId',
component: 'Input',
component: 'Select',
},
{
label: '数量',
fieldName: 'number',
component: 'Input',
},
{
label: '状态',
fieldName: 'state',
component: 'Input',
},
{
label: '审批人id',
fieldName: 'acceptanceUserId',
component: 'Input',
},
{
label: '审批时间',
fieldName: 'acceptanceTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
},
{
label: '申请时间',
fieldName: 'applicationTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
},
// {
// label: '状态',
// fieldName: 'state',
// component: 'Input',
// },
// {
// label: '审批人id',
// fieldName: 'acceptanceUserId',
// component: 'Input',
// },
// {
// label: '审批时间',
// fieldName: 'acceptanceTime',
// component: 'DatePicker',
// componentProps: {
// showTime: true,
// format: 'YYYY-MM-DD HH:mm:ss',
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
// },
// },
// {
// label: '申请时间',
// fieldName: 'applicationTime',
// component: 'DatePicker',
// componentProps: {
// showTime: true,
// format: 'YYYY-MM-DD HH:mm:ss',
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
// },
// },
];