diff --git a/src/views/system/user/formSchemas.tsx b/src/views/system/user/formSchemas.tsx index 7fd9f54..a50b408 100644 --- a/src/views/system/user/formSchemas.tsx +++ b/src/views/system/user/formSchemas.tsx @@ -37,7 +37,7 @@ export const userSchemas: FormSchema[] = [ { field: 'username', component: 'Input', - label: '用户名', + label: '登录用户名', rules: [{ required: true }], }, { @@ -51,7 +51,8 @@ export const userSchemas: FormSchema[] = [ { field: 'nickname', component: 'Input', - label: '呢称', + rules: [{ required: true }], + label: '呢称(姓名)', colProps: { span: 12, },