Files
iot-device-management-frontend/apps/web-ele/src/views/system/mail/log/data.ts

150 lines
3.5 KiB
TypeScript
Raw Normal View History

2025-05-12 00:31:59 +08:00
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
2025-05-12 00:31:59 +08:00
2025-09-05 12:24:58 +08:00
import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
2025-05-12 00:31:59 +08:00
import { getSimpleMailAccountList } from '#/api/system/mail/account';
2025-09-05 12:24:58 +08:00
import { getRangePickerDefaultProps } from '#/utils';
2025-05-12 00:31:59 +08:00
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'sendTime',
label: '发送时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
clearable: true,
2025-05-12 00:31:59 +08:00
},
},
{
fieldName: 'userId',
label: '用户编号',
component: 'Input',
componentProps: {
clearable: true,
2025-05-12 00:31:59 +08:00
placeholder: '请输入用户编号',
},
},
{
fieldName: 'userType',
label: '用户类型',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.USER_TYPE, 'number'),
clearable: true,
2025-05-12 00:31:59 +08:00
placeholder: '请选择用户类型',
},
},
{
fieldName: 'sendStatus',
label: '发送状态',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.SYSTEM_MAIL_SEND_STATUS, 'number'),
clearable: true,
2025-05-12 00:31:59 +08:00
placeholder: '请选择发送状态',
},
},
{
fieldName: 'accountId',
label: '邮箱账号',
component: 'ApiSelect',
componentProps: {
api: async () => await getSimpleMailAccountList(),
labelField: 'mail',
valueField: 'id',
clearable: true,
2025-05-12 00:31:59 +08:00
placeholder: '请选择邮箱账号',
},
},
{
fieldName: 'templateId',
label: '模板编号',
component: 'Input',
componentProps: {
clearable: true,
2025-05-12 00:31:59 +08:00
placeholder: '请输入模板编号',
},
},
];
}
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] {
2025-05-12 00:31:59 +08:00
return [
{
field: 'id',
title: '编号',
minWidth: 100,
},
{
field: 'sendTime',
title: '发送时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'userType',
title: '接收用户',
minWidth: 150,
slots: { default: 'userInfo' },
},
{
field: 'toMails',
title: '接收信息',
minWidth: 300,
formatter: ({ row }) => {
const lines: string[] = [];
if (row.toMails && row.toMails.length > 0) {
lines.push(`收件:${row.toMails.join('、')}`);
}
if (row.ccMails && row.ccMails.length > 0) {
lines.push(`抄送:${row.ccMails.join('、')}`);
}
if (row.bccMails && row.bccMails.length > 0) {
lines.push(`密送:${row.bccMails.join('、')}`);
}
return lines.join('\n');
},
2025-05-12 00:31:59 +08:00
},
{
field: 'templateTitle',
title: '邮件标题',
minWidth: 120,
},
{
field: 'templateContent',
title: '邮件内容',
minWidth: 300,
},
{
field: 'fromMail',
title: '发送邮箱',
minWidth: 120,
},
{
field: 'sendStatus',
title: '发送状态',
minWidth: 120,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.SYSTEM_MAIL_SEND_STATUS },
},
},
{
field: 'templateCode',
title: '模板编码',
minWidth: 120,
},
{
title: '操作',
width: 80,
2025-05-12 00:31:59 +08:00
fixed: 'right',
slots: { default: 'actions' },
2025-05-12 00:31:59 +08:00
},
];
}