diff --git a/src/api/email/index.js b/src/api/email/index.js index 76c63c8..40851b5 100644 --- a/src/api/email/index.js +++ b/src/api/email/index.js @@ -57,6 +57,15 @@ export function getEmailRecordList(params) { }) } +// 获取邮件记录详情 +export function getEmailRecordDetail(params) { + return request({ + url: '/api/admin/email-record/show', + method: 'get', + params + }) +} + // 发送邮件 export function sendEmail(data) { diff --git a/src/views/email/index.vue b/src/views/email/index.vue index ebd2416..6ce3d21 100644 --- a/src/views/email/index.vue +++ b/src/views/email/index.vue @@ -578,10 +578,21 @@
-

- - 收件人详情 ({{ detailRecord.recipients.length }}人) -

+
+

+ + 收件人详情 ({{ detailRecord.recipients.length }}人) +

+ + + 导出发送失败 ({{ detailRecord.failCount }}人) + +
@@ -743,7 +754,7 @@