feat: 客户和项目表单调整

This commit is contained in:
caiyuchao
2025-07-04 11:53:10 +08:00
parent f989e74616
commit 7a49385eab
2 changed files with 7 additions and 5 deletions

View File

@@ -137,6 +137,7 @@ export function useFormSchema(): VbenFormSchema[] {
fieldName: 'remark',
label: $t('customer.remarks'),
component: 'Textarea',
formItemClass: 'col-span-2',
},
];
}

View File

@@ -220,15 +220,16 @@ export function useFormSchema(): VbenFormSchema[] {
label: $t('project.envInfo'),
component: 'Input',
},
{
fieldName: 'envFileId',
label: $t('project.envInfoFile'),
component: 'Input',
},
// {
// fieldName: 'envFileId',
// label: $t('project.envInfoFile'),
// component: 'Input',
// },
{
fieldName: 'remark',
label: $t('project.remarks'),
component: 'Textarea',
formItemClass: 'col-span-2',
},
];
}