合同邮寄企业审核校验
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user