合同邮寄企业审核校验

This commit is contained in:
zhaoxiao
2021-10-09 09:42:22 +08:00
parent 9568ee41a5
commit 1cb69b57c8
+8 -3
View File
@@ -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)
}