import type { VbenFormSchema } from '#/adapter/form'; import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table'; import type { SystemOAuth2TokenApi } from '#/api/system/oauth2/token'; import { useAccess } from '@vben/access'; import { DICT_TYPE, getDictOptions } from '#/utils/dict'; const { hasAccessByCodes } = useAccess(); /** 列表的搜索表单 */ export function useGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'userId', label: '用户编号', component: 'Input', componentProps: { placeholder: '请输入用户编号', }, }, { fieldName: 'userType', label: '用户类型', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.USER_TYPE, 'number'), placeholder: '请选择用户类型', }, }, { fieldName: 'clientId', label: '客户端编号', component: 'Input', componentProps: { placeholder: '请输入客户端编号', }, }, ]; } /** 列表的字段 */ export function useGridColumns( onActionClick: OnActionClickFn, ): VxeTableGridOptions['columns'] { return [ { field: 'accessToken', title: '访问令牌', minWidth: 300, }, { field: 'refreshToken', title: '刷新令牌', minWidth: 300, }, { field: 'userId', title: '用户编号', minWidth: 100, }, { field: 'userType', title: '用户类型', minWidth: 100, cellRender: { name: 'CellDict', props: { type: DICT_TYPE.USER_TYPE }, }, }, { field: 'clientId', title: '客户端编号', minWidth: 120, }, { field: 'expiresTime', title: '过期时间', minWidth: 180, formatter: 'formatDateTime', }, { field: 'createTime', title: '创建时间', minWidth: 180, formatter: 'formatDateTime', }, { field: 'operation', title: '操作', minWidth: 100, align: 'center', fixed: 'right', cellRender: { attrs: { nameField: 'accessToken', nameTitle: 'OAuth2 令牌', onClick: onActionClick, }, name: 'CellOperation', options: [ { code: 'delete', text: '强退', show: hasAccessByCodes(['system:oauth2-token:delete']), }, ], }, }, ]; }