feat: 分配角色

This commit is contained in:
dap
2024-09-25 15:13:37 +08:00
parent 1c8c1848be
commit a318e8791e
4 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import type { FormSchemaGetter } from '#/adapter';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'userName',
label: '用户账号',
},
{
component: 'Input',
componentProps: {
placeholder: '请输入',
},
fieldName: 'phonenumber',
label: '手机号码',
},
];