diff --git a/src/views/system/group/components/config.ts b/src/views/system/group/components/config.ts index b6e4dab..c34a32b 100644 --- a/src/views/system/group/components/config.ts +++ b/src/views/system/group/components/config.ts @@ -19,8 +19,8 @@ export const searchFormSchema: FormSchema[] = [ componentProps: { datasourceType: 'staticData', staticOptions: [ - { key: 1, label: '启用', value: '0' }, - { key: 2, label: '停用', value: '1' }, + { key: 1, label: '启用', value: 1 }, + { key: 2, label: '停用', value: 0 }, ], labelField: 'label', valueField: 'value', @@ -57,8 +57,8 @@ export const columns: BasicColumn[] = [ customRender: ({ record }) => { const staticOptions = [ - { key: 1, label: '启用', value: 0 }, - { key: 2, label: '停用', value: 1 }, + { key: 1, label: '启用', value: 1 }, + { key: 2, label: '停用', value: 0 }, ]; return staticOptions.filter((x) => x.value === record.enabledMark)[0]?.label; }, @@ -229,8 +229,8 @@ export const formProps: FormProps = { disabled: false, optionType: 'default', staticOptions: [ - { key: 1, label: '启用', value: 0 }, - { key: 2, label: '停用', value: 1 }, + { key: 1, label: '启用', value: 1 }, + { key: 2, label: '停用', value: 0 }, ], datasourceType: 'staticData', labelField: 'label',