fix: file config

This commit is contained in:
xingyu4j
2025-06-07 15:48:35 +08:00
parent e3429f644b
commit 3c92f7daab
3 changed files with 12 additions and 12 deletions

View File

@@ -37,14 +37,6 @@ export function useFormSchema(): VbenFormSchema[] {
show: (formValues) => !formValues.id,
},
},
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
componentProps: {
placeholder: '请输入备注',
},
},
// DB / Local / FTP / SFTP
{
fieldName: 'config.basePath',
@@ -222,6 +214,14 @@ export function useFormSchema(): VbenFormSchema[] {
show: (formValues) => !!formValues.storage,
},
},
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
componentProps: {
placeholder: '请输入备注',
},
},
];
}