gaoluyang
昨天 b64a0deae5b5d33f9e20671a68936b27f0b9b00b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { DescriptionItemSchema } from '#/components/description';
 
import { h } from 'vue';
 
import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
import { formatDateTime } from '@vben/utils';
 
import { getSimpleMailAccountList } from '#/api/system/mail/account';
import { DictTag } from '#/components/dict-tag';
import { 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: 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: '编号',
      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');
      },
    },
    {
      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,
      fixed: 'right',
      slots: { default: 'actions' },
    },
  ];
}
 
/** 详情页的字段 */
export function useDetailSchema(): DescriptionItemSchema[] {
  return [
    {
      field: 'id',
      label: '编号',
    },
    {
      field: 'createTime',
      label: '创建时间',
      render: (val) => {
        return formatDateTime(val) as string;
      },
    },
    {
      field: 'fromMail',
      label: '发送邮箱',
    },
    {
      field: 'userId',
      label: '接收用户',
      render: (val, data) => {
        if (data?.userType && val) {
          return h('div', [
            h(DictTag, {
              type: DICT_TYPE.USER_TYPE,
              value: data.userType,
            }),
            ` (${val})`,
          ]);
        }
        return '无';
      },
    },
    {
      field: 'toMails',
      label: '接收信息',
      render: (val, data) => {
        const lines: string[] = [];
        if (val && val.length > 0) {
          lines.push(`收件:${val.join('、')}`);
        }
        if (data?.ccMails && data.ccMails.length > 0) {
          lines.push(`抄送:${data.ccMails.join('、')}`);
        }
        if (data?.bccMails && data.bccMails.length > 0) {
          lines.push(`密送:${data.bccMails.join('、')}`);
        }
        return h(
          'div',
          {
            style: { whiteSpace: 'pre-line' },
          },
          lines.join('\n'),
        );
      },
    },
    {
      field: 'templateId',
      label: '模板编号',
    },
    {
      field: 'templateCode',
      label: '模板编码',
    },
    {
      field: 'templateTitle',
      label: '邮件标题',
    },
    {
      field: 'templateContent',
      label: '邮件内容',
      span: 2,
      render: (val) => {
        return h('div', {
          innerHTML: val || '',
        });
      },
    },
    {
      field: 'sendStatus',
      label: '发送状态',
      render: (val) => {
        return h(DictTag, {
          type: DICT_TYPE.SYSTEM_MAIL_SEND_STATUS,
          value: val,
        });
      },
    },
    {
      field: 'sendTime',
      label: '发送时间',
      render: (val) => formatDateTime(val) as string,
    },
    {
      field: 'sendMessageId',
      label: '发送消息编号',
    },
    {
      field: 'sendException',
      label: '发送异常',
    },
  ];
}