diff --git a/src/views/ebiz/sale/SignatureConfirmation.vue b/src/views/ebiz/sale/SignatureConfirmation.vue index 74f08adf4..1e6e6865d 100644 --- a/src/views/ebiz/sale/SignatureConfirmation.vue +++ b/src/views/ebiz/sale/SignatureConfirmation.vue @@ -565,6 +565,10 @@ export default { that.goUrl() } else { that.faceAuthCount.appnt++; + if (this.faceAuthCount.appnt >= this.smsAuthNum) { + this.operaFlag = 'appnt' + this.realPeopelCheck() + } } }) }else{ @@ -589,6 +593,10 @@ export default { that.insuredUrl() } else { that.faceAuthCount.insured++; + if (this.faceAuthCount.insured >= this.smsAuthNum) { + this.operaFlag = 'insured' + this.realPeopelCheck() + } } }) }else{ @@ -1044,6 +1052,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 6f75c5147..ab94cfd0c 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 4bfc297fd..b2c15aaac 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 {