From 1ea0f70d2c7577b2d58e2f01e74438e7cdcb5c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=B3=E5=8D=8E=E7=A5=A5?= Date: Wed, 18 Mar 2020 18:52:43 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-718=E3=80=900319=E3=80=91=E7=94=B5?= =?UTF-8?q?=E6=8A=95=E6=B7=BB=E5=8A=A0=E7=9F=AD=E4=BF=A1=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81=E9=AA=8C=E8=AF=81=E8=BA=AB=E4=BB=BD=20=20=E5=9B=9E?= =?UTF-8?q?=E6=89=A7=E7=AD=BE=E6=94=B6=E4=BA=BA=E8=84=B8=E8=AF=86=E5=88=AB?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=9F=AD=E4=BF=A1=E9=AA=8C=E8=AF=81=E8=BA=AB?= =?UTF-8?q?=E4=BB=BD=E3=80=81=E6=8F=90=E7=A4=BA=E5=94=A4=E9=86=92=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20--=E6=8F=90=E4=BA=A4=E4=BA=BA=EF=BC=9A=E9=98=B3?= =?UTF-8?q?=E5=8D=8E=E7=A5=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/SignatureConfirmation.vue | 16 ++++++++++++++++ src/views/ebiz/serve/AirSign.vue | 2 +- src/views/ebiz/serve/Detail.vue | 4 ++++ 3 files changed, 21 insertions(+), 1 deletion(-) 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 {