mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-05-05 00:51:26 +08:00
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import type { FormSchemaGetter } from '#/adapter';
|
|
|
|
export const querySchema: FormSchemaGetter = () => [
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'userName',
|
|
label: '用户账号',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'phonenumber',
|
|
label: '手机号码',
|
|
},
|
|
];
|