From 1cb69b57c88434895ba504c4e2934412fecc5449 Mon Sep 17 00:00:00 2001 From: zhaoxiao Date: Sat, 9 Oct 2021 09:42:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=90=8C=E9=82=AE=E5=AF=84=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E5=AE=A1=E6=A0=B8=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/mailManagement/ContractMail.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/views/mailManagement/ContractMail.vue b/src/views/mailManagement/ContractMail.vue index ff36bf8..da5feb7 100644 --- a/src/views/mailManagement/ContractMail.vue +++ b/src/views/mailManagement/ContractMail.vue @@ -210,9 +210,14 @@ export default { } checkCompanyAduit(param).then(res => { if (res.success) { - this.$refs.modalForm.add(id) - this.$refs.modalForm.title = '邮寄' - this.$refs.modalForm.disableSubmit = false + // 企业审核未成功不可进行邮寄操作 + if (res.result.indexOf('审核未成功') === -1) { + this.$refs.modalForm.add(id) + this.$refs.modalForm.title = '邮寄' + this.$refs.modalForm.disableSubmit = false + } else { + this.$message.warn(res.result) + } } else { this.$message.warn(res.message) }