From 27438903897f09b911db8fd8f9770e42b4a22a19 Mon Sep 17 00:00:00 2001
From: zhouhao <787329763@qq.com>
Date: Sat, 08 Jan 2022 10:40:37 +0800
Subject: [PATCH] 验证完

---
 src/views/main/queryres.vue |   21 ++++++++++++++-------
 1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/src/views/main/queryres.vue b/src/views/main/queryres.vue
index 2df716e..2f25fae 100644
--- a/src/views/main/queryres.vue
+++ b/src/views/main/queryres.vue
@@ -7,7 +7,8 @@
       <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="#6cc3bb" @click="refreshBtn" round v-if="!ResultIs">刷新</van-button>
@@ -49,7 +50,6 @@
                  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
-                         this.datastr='活体校验失败,请重试'
                          slfe.ResultIs =true
                           window.clearInterval(t2)  // 去除定时器
                      }else if(res.body.faceResult==1) {  //人脸识别成功
@@ -65,6 +65,10 @@
             }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)
@@ -85,12 +89,9 @@
             }  else{  //生产
               objUrl = `${window.location.origin}/comn_business/#/main/queryres?bizId=${this.bizId}&bizType=${this.bizType}`
             }
-           this.$api.refreshFaceStatus({rpcId:this.dataInfo.failRpcId,callbackUrl:objUrl}).then(res => {
+           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()
@@ -98,7 +99,13 @@
   },
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {
-    this.bankCardNoInit()
+     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