From f46a893a734228c171fbbe9ddc381615e289e49f Mon Sep 17 00:00:00 2001
From: zhouhao <787329763@qq.com>
Date: Thu, 06 Jan 2022 19:28:48 +0800
Subject: [PATCH] 11
---
src/views/main/queryres.vue | 30 ++++++++++++++++++------------
1 files changed, 18 insertions(+), 12 deletions(-)
diff --git a/src/views/main/queryres.vue b/src/views/main/queryres.vue
index 825ec22..de58410 100644
--- a/src/views/main/queryres.vue
+++ b/src/views/main/queryres.vue
@@ -11,7 +11,7 @@
<!-- <p class="content-text" v-if="isActive">{{examineStr}}</p> -->
<div class="btn-content">
<van-button color="#6cc3bb" @click="refreshBtn" round v-if="!ResultIs">刷新</van-button>
- <van-button color="#E43A28" @click="checkBtn" round v-if="ResultIs">重新校验</van-button>
+ <van-button color="#6cc3bb" @click="checkBtn" round v-if="ResultIs">重新校验</van-button>
</div>
</div>
</div>
@@ -29,7 +29,9 @@
orderNo:0,
ResultIs:false,
examineIs:true,
- dataInfo:{}
+ dataInfo:{},
+ bizId:this.$route.query.bizId, //订单编号
+ bizType:this.$route.query.bizType, //订单类型
};
},
//监听属性 类似于data概念
@@ -42,23 +44,27 @@
var slfe = this
let objForm ={bizId:this.bizId,bizType:this.bizType}
var t2 = window.setInterval(function () {
- slfe.$api.refreshFaceStatus({objForm}).then(res => {
- if(res.body.status==1 && Number(this.bizType)==0 || res.body.status==1 && Number(this.bizType)==1 || res.body.status==4 && Number(this.bizType)==1){ //人脸识别未出结果
- slfe.$api.getApplyStatus({...objForm,status:res.body.status}).then(res=>{
+ 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){ //人脸识别失败
- this.dataInfo =res.body
- this.ResultIs =true
+ slfe.dataInfo =res.body
+ this.datastr='活体校验失败,请重试'
+ slfe.ResultIs =true
window.clearInterval(t2) // 去除定时器
}else if(res.body.faceResult==1) { //人脸识别成功
window.clearInterval(t2) // 去除定时器
- this.$router.push({path:'/main/bancardsucces',query:{...objForm}})
+ 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 ){ //人脸识别成功 完成保理付款服务合同签署,待进行分销主体人脸认证
+ slfe.$router.push({path:'/',query:{bizId:slfe.bizId,bizType:slfe.bizType}})
+ }
})
}, 5000)
},
@@ -86,7 +92,7 @@
window.location.href ="https://www.shouxinshibai.com/"
},
refreshBtn(){
-
+ this.bankCardNoInit()
}
},
//生命周期 - 创建完成(可以访问当前this实例)
--
Gitblit v1.8.0