import type { VbenFormSchema } from '#/adapter/form'; import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table'; import type { SystemUserApi } from '#/api'; import { ref } from 'vue'; import { $t } from '#/locales'; // 角色列表引用,可以在加载后更新 export const roleOptions = ref<{ label: string; value: number | string }[]>([]); export function useFormSchema(): VbenFormSchema[] { return [ { component: 'Input', fieldName: 'username', label: $t('system.user.userName'), rules: 'required', }, { component: 'Input', fieldName: 'real_name', label: $t('system.user.realName'), rules: 'required', }, { component: 'RadioGroup', componentProps: { buttonStyle: 'solid', options: [ { label: $t('common.enabled'), value: 1 }, { label: $t('common.disabled'), value: 0 }, ], optionType: 'button', }, defaultValue: 1, fieldName: 'status', label: $t('system.user.status'), }, { component: 'Select', componentProps: { mode: 'multiple', allowClear: true, options: roleOptions, class: 'w-full', }, fieldName: 'role_ids', formItemClass: 'items-start', label: $t('system.user.setPermissions'), }, ]; } export function useGridFormSchema(): VbenFormSchema[] { return [ { component: 'Input', fieldName: 'username', label: $t('system.user.userName'), }, { component: 'Input', fieldName: 'real_name', label: $t('system.user.realName'), }, { component: 'Select', componentProps: { allowClear: true, options: [ { label: $t('common.enabled'), value: 1 }, { label: $t('common.disabled'), value: 0 }, ], }, fieldName: 'status', label: $t('system.user.status'), }, { component: 'RangePicker', fieldName: 'create_time', label: $t('system.user.createTime'), }, ]; } export function useColumns( onActionClick: OnActionClickFn, onStatusChange?: (newStatus: any, row: T) => PromiseLike, ): VxeTableGridOptions['columns'] { return [ { field: 'username', title: $t('system.user.userName'), minWidth: 200, }, { field: 'real_name', title: $t('system.user.realName'), minWidth: 200, }, { cellRender: { attrs: { beforeChange: onStatusChange }, name: onStatusChange ? 'CellSwitch' : 'CellTag', }, field: 'status', title: $t('system.user.status'), minWidth: 100, }, { field: 'create_time', title: $t('system.user.createTime'), minWidth: 200, }, { align: 'center', cellRender: { attrs: { nameField: 'username', nameTitle: $t('system.user.userName'), onClick: onActionClick, }, options: [ { code: 'edit', text: '编辑' }, { code: 'resetPassword', text: '重置密码' }, { code: 'delete', text: '删除' }, ], name: 'CellOperation', }, field: 'operation', fixed: 'right', title: $t('system.user.operation'), width: 200, }, ]; }