import type { FormSchemaGetter } from '#/adapter/form';
import type { VxeGridProps } from '#/adapter/vxe-table';
export const querySchema: FormSchemaGetter = () => [
{
component: 'Input',
fieldName: 'userName',
label: '用户账号',
},
fieldName: 'phonenumber',
label: '手机号码',
];
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
title: '用户账号',
field: 'userName',
title: '用户昵称',
field: 'nickName',
title: '邮箱',
field: 'email',
title: '手机号',
field: 'phonenumber',
field: 'action',
fixed: 'right',
slots: { default: 'action' },
title: '操作',
resizable: false,
width: 'auto',