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) }