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

151 lines
3.5 KiB
TypeScript
Raw Normal View History

2025-04-03 23:36:02 +08:00
import type { VbenFormSchema } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { SystemMailLogApi } from '#/api/system/mail/log';
import { getSimpleMailAccountList } from '#/api/system/mail/account';
import { DICT_TYPE, getDictOptions } from '#/utils/dict';
import { getRangePickerDefaultProps } from '#/utils/date';
import { useAccess } from '@vben/access';
const { hasAccessByCodes } = useAccess();
2025-04-03 23:36:02 +08:00
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
2025-04-04 17:45:56 +08:00
fieldName: 'sendTime',
label: '发送时间',
component: 'RangePicker',
2025-04-03 23:36:02 +08:00
componentProps: {
...getRangePickerDefaultProps(),
2025-04-03 23:36:02 +08:00
allowClear: true,
},
},
{
2025-04-04 17:45:56 +08:00
fieldName: 'userId',
label: '用户编号',
2025-04-03 23:36:02 +08:00
component: 'Input',
2025-04-04 17:45:56 +08:00
componentProps: {
allowClear: true,
placeholder: '请输入用户编号',
}
},
{
fieldName: 'userType',
label: '用户类型',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.USER_TYPE, 'number'),
allowClear: true,
placeholder: '请选择用户类型',
},
2025-04-03 23:36:02 +08:00
},
{
fieldName: 'sendStatus',
label: '发送状态',
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.SYSTEM_MAIL_SEND_STATUS, 'number'),
2025-04-04 17:45:56 +08:00
allowClear: true,
placeholder: '请选择发送状态',
2025-04-03 23:36:02 +08:00
},
},
{
2025-04-04 17:45:56 +08:00
fieldName: 'accountId',
label: '邮箱账号',
component: 'ApiSelect',
2025-04-03 23:36:02 +08:00
componentProps: {
2025-04-04 17:45:56 +08:00
api: async () => await getSimpleMailAccountList(),
labelField: 'mail',
valueField: 'id',
2025-04-03 23:36:02 +08:00
allowClear: true,
2025-04-04 17:45:56 +08:00
placeholder: '请选择邮箱账号',
2025-04-03 23:36:02 +08:00
},
},
{
2025-04-04 17:45:56 +08:00
fieldName: 'templateId',
label: '模板编号',
2025-04-03 23:36:02 +08:00
component: 'Input',
componentProps: {
allowClear: true,
2025-04-04 17:45:56 +08:00
placeholder: '请输入模板编号',
}
2025-04-03 23:36:02 +08:00
},
];
}
/** 列表的字段 */
2025-04-04 17:45:56 +08:00
export function useGridColumns<T = SystemMailLogApi.SystemMailLog>(
2025-04-03 23:36:02 +08:00
onActionClick: OnActionClickFn<T>,
): VxeTableGridOptions['columns'] {
return [
{
field: 'id',
title: '编号',
minWidth: 100,
},
{
2025-04-04 17:45:56 +08:00
field: 'sendTime',
title: '发送时间',
2025-04-03 23:36:02 +08:00
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'toMail',
title: '收件邮箱',
2025-04-04 17:45:56 +08:00
minWidth: 160,
2025-04-03 23:36:02 +08:00
},
{
field: 'templateTitle',
title: '邮件标题',
minWidth: 120,
},
{
field: 'templateContent',
title: '邮件内容',
minWidth: 300,
},
2025-04-04 17:45:56 +08:00
{
field: 'fromMail',
title: '发送邮箱',
minWidth: 120,
},
2025-04-03 23:36:02 +08:00
{
field: 'sendStatus',
title: '发送状态',
minWidth: 120,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.SYSTEM_MAIL_SEND_STATUS },
},
},
{
field: 'templateCode',
title: '模板编码',
minWidth: 120,
},
{
field: 'operation',
title: '操作',
2025-04-04 17:45:56 +08:00
minWidth: 80,
2025-04-03 23:36:02 +08:00
align: 'center',
fixed: 'right',
cellRender: {
attrs: {
nameField: 'toMail',
nameTitle: '邮件日志',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'detail',
2025-04-03 23:36:02 +08:00
text: '查看',
show: hasAccessByCodes(['system:mail-log:query']),
2025-04-04 17:45:56 +08:00
}
2025-04-03 23:36:02 +08:00
],
},
},
];
}