Merge branch 'feature/GFRS-718【0319】电投添加短信验证码验证身份' into dev

This commit is contained in:
阳华祥
2020-03-18 18:53:52 +08:00
3 changed files with 21 additions and 1 deletions

View File

@@ -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()
}
}
}
},

View File

@@ -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()
}
}

View File

@@ -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 {