Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
import type { VxeGridProps } from '#/adapter/vxe-table';
|
|
|
|
import { getAdminList } from '#/views/system/admin/api';
|
|
|
|
interface RowType {
|
|
id: string;
|
|
nick_name: string;
|
|
email: string;
|
|
avatar: string;
|
|
roles: { name: string }[];
|
|
open_id: string;
|
|
code: string;
|
|
platform_id: string;
|
|
phone: string;
|
|
desc: string;
|
|
created_at: string;
|
|
}
|
|
|
|
export const gridOptions: VxeGridProps<RowType> = {
|
|
checkboxConfig: {
|
|
highlight: true,
|
|
labelField: '',
|
|
},
|
|
columnConfig: {
|
|
useKey: true,
|
|
},
|
|
rowConfig: {
|
|
useKey: true,
|
|
},
|
|
columns: [
|
|
{ type: 'checkbox', width: 60 },
|
|
{ field: 'id', align: 'left', title: 'ID', width: 100 },
|
|
{ field: 'nick_name', align: 'left', title: '名称' },
|
|
{
|
|
field: 'avatar',
|
|
align: 'left',
|
|
title: '头像',
|
|
slots: { default: 'avatar' },
|
|
width: 130,
|
|
},
|
|
{ field: 'role.name', title: '角色' },
|
|
{ field: 'open_id', title: 'Open ID' },
|
|
{ field: 'phone', title: '手机号码' },
|
|
{ field: 'email', title: '邮箱' },
|
|
{ field: 'desc', title: '备注' },
|
|
{ field: 'created_at', title: '注册时间' },
|
|
{ type: 'html', title: '操作', width: 200, slots: { default: 'action' } },
|
|
],
|
|
keepSource: true,
|
|
pagerConfig: {},
|
|
proxyConfig: {
|
|
ajax: {
|
|
// 请求后端接口方法
|
|
query: async ({ page }, formValues) => {
|
|
return await getAdminList({
|
|
page: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
height: 'auto',
|
|
border: false,
|
|
toolbarConfig: {
|
|
// 是否显示搜索表单控制按钮
|
|
// @ts-ignore 正式环境时有完整的类型声明
|
|
search: true,
|
|
refresh: true, // 刷新
|
|
print: false, // 打印
|
|
export: false, // 导出
|
|
// custom: true, // 自定义列
|
|
zoom: true, // 最大化最小化
|
|
slots: {
|
|
buttons: 'toolbar-buttons',
|
|
},
|
|
custom: {
|
|
// 自定义列-图标
|
|
icon: 'vxe-icon-menu',
|
|
},
|
|
},
|
|
showOverflow: false,
|
|
};
|