投被同人签名校验

This commit is contained in:
mengxiaolong
2020-09-10 16:54:55 +08:00
parent 59621b408c
commit 126f2a181b

View File

@@ -455,8 +455,10 @@ export default {
// 校验签名
if (this.$route.query.receiveType === '0') {
if (!this.policyholderSigned) return this.$toast('签名未完成, 请先进行签名')
} else if (this.$route.query.receiveType === '1') {
} else if (this.$route.query.receiveType === '1' && !this.releationType) {
if (!this.policyholderSigned || !this.insurantSigned) return this.$toast('签名未完成, 请先进行签名')
} else if (this.$route.query.receiveType === '1' && this.releationType) {
if (!this.insurantSigned) return this.$toast('签名未完成, 请先进行签名')
}
let phoneStrArr = this.problemInfo.phoneNo.split('')