import type { VbenFormSchema } from '#/adapter/form'; import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import { getSimpleMailAccountList } from '#/api/system/mail/account'; import { DICT_TYPE, getDictOptions, getRangePickerDefaultProps } from '#/utils'; /** 列表的搜索表单 */ export function useGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'sendTime', label: '发送时间', component: 'RangePicker', componentProps: { ...getRangePickerDefaultProps(), allowClear: true, }, }, { fieldName: 'userId', label: '用户编号', component: 'Input', componentProps: { allowClear: true, placeholder: '请输入用户编号', }, }, { fieldName: 'userType', label: '用户类型', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.USER_TYPE, 'number'), allowClear: true, placeholder: '请选择用户类型', }, }, { fieldName: 'sendStatus', label: '发送状态', component: 'Select', componentProps: { options: getDictOptions(DICT_TYPE.SYSTEM_MAIL_SEND_STATUS, 'number'), allowClear: true, placeholder: '请选择发送状态', }, }, { fieldName: 'accountId', label: '邮箱账号', component: 'ApiSelect', componentProps: { api: async () => await getSimpleMailAccountList(), labelField: 'mail', valueField: 'id', allowClear: true, placeholder: '请选择邮箱账号', }, }, { fieldName: 'templateId', label: '模板编号', component: 'Input', componentProps: { allowClear: true, placeholder: '请输入模板编号', }, }, ]; } /** 列表的字段 */ export function useGridColumns(): VxeTableGridOptions['columns'] { return [ { field: 'id', title: '编号', }, { field: 'sendTime', title: '发送时间', formatter: 'formatDateTime', }, { field: 'toMail', title: '收件邮箱', }, { field: 'templateTitle', title: '邮件标题', }, { field: 'templateContent', title: '邮件内容', }, { field: 'fromMail', title: '发送邮箱', }, { field: 'sendStatus', title: '发送状态', cellRender: { name: 'CellDict', props: { type: DICT_TYPE.SYSTEM_MAIL_SEND_STATUS }, }, }, { field: 'templateCode', title: '模板编码', }, { title: '操作', width: 80, fixed: 'right', slots: { default: 'actions' }, }, ]; }