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', fieldName: 'remark',
label: $t('customer.remarks'), label: $t('customer.remarks'),
component: 'Textarea', component: 'Textarea',
formItemClass: 'col-span-2',
}, },
]; ];
} }

View File

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