diff --git a/src/views/ebiz/sale/SignatureConfirmation.vue b/src/views/ebiz/sale/SignatureConfirmation.vue index a9c021e0b..0085f56d1 100644 --- a/src/views/ebiz/sale/SignatureConfirmation.vue +++ b/src/views/ebiz/sale/SignatureConfirmation.vue @@ -568,6 +568,10 @@ export default { that.goUrl() } else { that.faceAuthCount.appnt++; + if (this.faceAuthCount.appnt >= this.smsAuthNum) { + this.operaFlag = 'appnt' + this.realPeopelCheck() + } } }) }else{ @@ -592,6 +596,10 @@ export default { that.insuredUrl() } else { that.faceAuthCount.insured++; + if (this.faceAuthCount.insured >= this.smsAuthNum) { + this.operaFlag = 'insured' + this.realPeopelCheck() + } } }) }else{ @@ -1067,6 +1075,14 @@ export default { } }else{ this.faceAuthCount.weixin++; + if (this.faceAuthCount.weixin >= this.smsAuthNum) { + if (window.sessionStorage.shareCode == '1') { + this.operaFlag = 'insured' + } else { + this.operaFlag = 'appnt' + } + this.realPeopelCheck() + } } } }, diff --git a/src/views/ebiz/serve/AirSign.vue b/src/views/ebiz/serve/AirSign.vue index ed3e5118d..40d3d1a27 100644 --- a/src/views/ebiz/serve/AirSign.vue +++ b/src/views/ebiz/serve/AirSign.vue @@ -203,7 +203,7 @@ export default { that.disabled = false } else { this.faceAuthCount.weixin++; - if (this.faceAuthCount.weixin < this.smsAuthNum) { + if (this.faceAuthCount.weixin >= this.smsAuthNum) { this.realPeopelCheck() } } diff --git a/src/views/ebiz/serve/Detail.vue b/src/views/ebiz/serve/Detail.vue index 44846f7a9..2c4f9b075 100644 --- a/src/views/ebiz/serve/Detail.vue +++ b/src/views/ebiz/serve/Detail.vue @@ -380,6 +380,10 @@ export default { } else { that.faceAuthCount.appnt++ this.$toast(JSON.parse(data).error) + if (that.faceAuthCount.appnt >= this.smsAuthNum) { + this.$toast.clear() + this.realPeopelCheck() + } } }) } else {