diff --git a/apps/web-antd/src/views/license/customer/data.ts b/apps/web-antd/src/views/license/customer/data.ts index b20a41f..2044e6f 100644 --- a/apps/web-antd/src/views/license/customer/data.ts +++ b/apps/web-antd/src/views/license/customer/data.ts @@ -137,6 +137,7 @@ export function useFormSchema(): VbenFormSchema[] { fieldName: 'remark', label: $t('customer.remarks'), component: 'Textarea', + formItemClass: 'col-span-2', }, ]; } diff --git a/apps/web-antd/src/views/license/project/data.ts b/apps/web-antd/src/views/license/project/data.ts index ce610c6..042bb87 100644 --- a/apps/web-antd/src/views/license/project/data.ts +++ b/apps/web-antd/src/views/license/project/data.ts @@ -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', }, ]; }