fix: oss配置是否默认取值

This commit is contained in:
dap
2025-05-27 19:35:22 +08:00
parent 2569e1da0d
commit 9db6ade1ed
2 changed files with 6 additions and 1 deletions

View File

@@ -28,7 +28,10 @@ export const querySchema: FormSchemaGetter = () => [
{
component: 'Select',
componentProps: {
options: getDictOptions(DictEnum.SYS_YES_NO),
options: [
{ label: '是', value: '0' },
{ label: '否', value: '1' },
],
},
fieldName: 'status',
label: '是否默认',