修改页面弹窗全屏

This commit is contained in:
2026-02-08 14:28:10 +08:00
parent 9820402b2c
commit d6e312de2b
45 changed files with 72 additions and 54 deletions

View File

@@ -48,9 +48,10 @@ const searchForm: FormProps<BizResumeEmployee> = {
{
label: t('性别'),
field: 'sex',
component: 'RadioGroup',
component: 'Select',
componentProps: {
dictType: 'sys_user_sex',
allowClear: true,
},
},
{

View File

@@ -26,30 +26,12 @@ const searchForm: FormProps = {
label: t('状态'),
field: 'status',
component: 'Select',
defaultValue: '0',
componentProps: {
dictType: 'sys_user_status',
allowClear: true,
},
},
{
field: 'none',
component: 'None',
},
{
label: t('手机'),
field: 'mobile',
component: 'Input',
},
{
label: t('邮箱'),
field: 'email',
component: 'Input',
},
{
label: t('电话'),
field: 'phone',
component: 'Input',
},
],
};