From e057091389829d697e5373fbef41c97c383c14c6 Mon Sep 17 00:00:00 2001
From: zhouhao <787329763@qq.com>
Date: Fri, 07 Jan 2022 11:52:54 +0800
Subject: [PATCH] 人脸识别失败跳转
---
src/views/main/queryres.vue | 66 ++++++++++++++++++++++++--------
1 files changed, 49 insertions(+), 17 deletions(-)
diff --git a/src/views/main/queryres.vue b/src/views/main/queryres.vue
index 392f795..2f25fae 100644
--- a/src/views/main/queryres.vue
+++ b/src/views/main/queryres.vue
@@ -1,16 +1,18 @@
<template>
<div class='text-main'>
- <van-nav-bar title="审核结果" />
+ <!-- <van-nav-bar title="审核结果" /> -->
<div style=" text-align: center;">
<img height="180" src="../../assets/img/loading.png" v-if="!ResultIs" />
<img height="180" src="../../assets/img/img_fail.png" v-if="ResultIs" />
</div>
<div class="content">
- <p class="content-text"> {{datastr}}</p>
+ <p class="content-text" v-if="!ResultIs"> {{datastr}}</p>
+ <p class="content-text" v-if="ResultIs"> 活体校验失败,请重试</p>
<!-- <p class="content-text" v-if="isActive">{{examineStr}}</p> -->
<div class="btn-content">
- <van-button color="#E43A28" @click="checkBtn" round v-if="ResultIs">重新校验</van-button>
+ <van-button color="#6cc3bb" @click="refreshBtn" round v-if="!ResultIs">刷新</van-button>
+ <van-button color="#6cc3bb" @click="checkBtn" round v-if="ResultIs">重新校验</van-button>
</div>
</div>
</div>
@@ -27,7 +29,10 @@
isActive: false,
orderNo:0,
ResultIs:false,
- examineIs:true
+ examineIs:true,
+ dataInfo:{},
+ bizId:this.$route.query.bizId, //订单编号
+ bizType:this.$route.query.bizType, //订单类型
};
},
//监听属性 类似于data概念
@@ -40,17 +45,31 @@
var slfe = this
let objForm ={bizId:this.bizId,bizType:this.bizType}
var t2 = window.setInterval(function () {
- slfe.$api.refreshFaceStatus({objForm}).then(res => {
- // window.clearInterval(t2) // 去除定时器
- if(res.body.status==1){ //人脸识别未出结果
- slfe.$api.getApplyStatus({...objForm,status:res.body.status}).then(res=>{
- if(res.body.faceResult==0){
- this.ResultIs =true
+ slfe.$api.getBizStatus({bizId:slfe.bizId,bizType:slfe.bizType}).then(res => {
+ if(res.body.status==1 && Number(slfe.bizType)==0 || res.body.status==1 && Number(slfe.bizType)==1 || res.body.status==4 && Number(slfe.bizType)==1){ //人脸识别未出结果
+ slfe.$api.getApplyStatus({bizId:slfe.bizId,bizType:slfe.bizType,status:res.body.status}).then(res=>{
+ if(res.body.faceResult==0 || res.body.faceResult==3){ //人脸识别失败
+ slfe.dataInfo =res.body
+ slfe.ResultIs =true
+ window.clearInterval(t2) // 去除定时器
+ }else if(res.body.faceResult==1) { //人脸识别成功
+ window.clearInterval(t2) // 去除定时器
+ slfe.$router.push({path:'/main/bancardsucces',query:{bizId:slfe.bizId,bizType:slfe.bizType}})
+ }else if(res.body.faceResult==2){ //人脸识别中
+
}
})
- }else{
-
- }
+ }else if(res.body.status==2 && Number(slfe.bizType)==0 || res.body.status==6 && Number(slfe.bizType)==1){ //人脸识别成功 最后一步
+ window.clearInterval(t2) // 去除定时器
+ slfe.$router.push({path:'/main/bancardsucces',query:{bizId:slfe.bizId,bizType:slfe.bizType}})
+ }else if(res.body.status==3 && Number(slfe.bizType)==1 ){ //人脸识别成功 完成保理付款服务合同签署,待进行分销主体人脸认证
+ window.clearInterval(t2) // 去除定时器
+ slfe.$router.push({path:'/',query:{bizId:slfe.bizId,bizType:slfe.bizType}})
+ }else if(res.body.status==99 && Number(slfe.bizType)==0 || res.body.status==88 && Number(slfe.bizType)==1 || res.body.status==99 && Number(slfe.bizType)==1){ //人脸识别失败
+ window.clearInterval(t2) // 去除定时器
+ slfe.dataInfo =res.body
+ slfe.ResultIs =true //重试
+ }
})
}, 5000)
},
@@ -64,16 +83,29 @@
return (false);
},
checkBtn(){ //重新校验
- this.$api.faceIdUrl({orderId: this.orderNo}).then(res => {
- window.location.href =res.body.url
+ let objUrl
+ if (process.env.NODE_ENV === "development") { //开发环境
+ objUrl = `https://t.finlean.com/comn_business/#/main/queryres?bizId=${this.bizId}&bizType=${this.bizType}`
+ } else{ //生产
+ objUrl = `${window.location.origin}/comn_business/#/main/queryres?bizId=${this.bizId}&bizType=${this.bizType}`
+ }
+ this.$api.refreshFaceStatus({bizId:this.bizId,bizType:this.bizType,callbackUrl:objUrl}).then(res => {
+ window.location.href =res.body.faceUrl
})
},
- returnApp(){
- window.location.href ="https://www.shouxinshibai.com/"
+ refreshBtn(){
+ this.bankCardNoInit()
}
},
//生命周期 - 创建完成(可以访问当前this实例)
created() {
+ this.$api.getBizStatus({bizId:this.bizId,bizType:this.bizType}).then(res=>{
+ if(res.body.status==99 && Number(this.bizType)==0 || res.body.status==88 && Number(this.bizType)==1 || res.body.status==99 && Number(this.bizType)==1){
+ return this.ResultIs =true
+ }else{
+ this.bankCardNoInit()
+ }
+ })
// if(this.getQueryVariable('orderNo')){
// this.orderNo=this.getQueryVariable('orderNo')
// }else{
--
Gitblit v1.8.0