From 6b63daea879383820e01595edd1b59319173345b Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Sat, 7 May 2022 14:41:31 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E9=82=AE=E4=BB=B6=E5=8F=91=E9=80=81?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WorkingGroupMemberUnitMaintenance.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue b/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue index 99def6d..1cc656d 100644 --- a/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue +++ b/src/views/projectManagement/WorkingGroupMemberUnitMaintenance.vue @@ -168,6 +168,7 @@ + @@ -183,6 +184,7 @@ import WorkingGroupMemberSetChargeNotice from './modules/WorkingGroupMemberSetCh import Vue from 'vue' import { ACCESS_TOKEN } from '../../store/mutation-types' import PreviewFile from '../../components/jero/PreviewFile' +import EmailErrorMsgModal from './modules/EmailErrorMsgModal' // eslint-disable-next-line no-undef,no-unused-vars const Base64 = require('js-base64').Base64 @@ -196,7 +198,8 @@ export default { ProjectDetailModal, WorkingGroupMemberUnitModule, WorkingGroupMemberSetChargeNotice, - PreviewFile + PreviewFile, + EmailErrorMsgModal }, mixins: [JeroListMixin], computed: { @@ -482,6 +485,13 @@ export default { dunningReminder(param).then((res) => { if (res.success) { that.$message.success(res.message) + // 是否有邮件发送失败 有就给出提示信息 + if (Array.isArray(res.result) && res.result.length > 0) { + // msgWarn(this,res.result,0) + that.$refs.emailError.open() + that.$refs.emailError.msgList = res.result + console.log(that.$refs.emailError.msgList, 'that.$refs.emailError.msgList ') + } that.loadData() that.onClearSelected() } else {