feat:清理多余的 buttonStyle: 'solid', 【ele】

This commit is contained in:
YunaiV
2025-10-16 14:00:53 +08:00
parent d1089d7a50
commit 3f6c405376
44 changed files with 89 additions and 160 deletions

View File

@@ -90,8 +90,6 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'RadioGroup',
componentProps: {
options: getDictOptions(DICT_TYPE.SYSTEM_MENU_TYPE, 'number'),
buttonStyle: 'solid',
optionType: 'button',
},
rules: z.number().default(SystemMenuTypeEnum.DIR),
},
@@ -214,8 +212,6 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'RadioGroup',
componentProps: {
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
buttonStyle: 'solid',
optionType: 'button',
},
rules: z.number().default(CommonStatusEnum.ENABLE),
},
@@ -228,8 +224,6 @@ export function useFormSchema(): VbenFormSchema[] {
{ label: '总是', value: true },
{ label: '不是', value: false },
],
buttonStyle: 'solid',
optionType: 'button',
},
rules: 'required',
defaultValue: true,
@@ -250,8 +244,6 @@ export function useFormSchema(): VbenFormSchema[] {
{ label: '缓存', value: true },
{ label: '不缓存', value: false },
],
buttonStyle: 'solid',
optionType: 'button',
},
rules: 'required',
defaultValue: true,