From bee1edb443338e97dbad62c2c01c963b70a0c746 Mon Sep 17 00:00:00 2001
From: zhouhao <787329763@qq.com>
Date: Thu, 06 Jan 2022 14:04:11 +0800
Subject: [PATCH] 修改返回APP地址

---
 src/views/main/queryres.vue |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/src/views/main/queryres.vue b/src/views/main/queryres.vue
index dc1e608..825ec22 100644
--- a/src/views/main/queryres.vue
+++ b/src/views/main/queryres.vue
@@ -28,7 +28,8 @@
       isActive: false,
       orderNo:0,
       ResultIs:false,
-      examineIs:true
+      examineIs:true,
+      dataInfo:{}
     };
   },
   //监听属性 类似于data概念
@@ -45,7 +46,8 @@
             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=>{
                      if(res.body.faceResult==0 || res.body.faceResult==3){  //人脸识别失败
-                          this.ResultIs =true
+                         this.dataInfo =res.body
+                         this.ResultIs =true
                           window.clearInterval(t2)  // 去除定时器
                      }else if(res.body.faceResult==1) {  //人脸识别成功
                           window.clearInterval(t2)  // 去除定时器
@@ -70,8 +72,14 @@
       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({rpcId:this.dataInfo.failRpcId,callbackUrl:objUrl}).then(res => {
+               window.location.href =res.body.faceUrl               
             })      
     },
     returnApp(){
@@ -83,6 +91,7 @@
   },
   //生命周期 - 创建完成(可以访问当前this实例)
   created() {
+    this.bankCardNoInit()
     // if(this.getQueryVariable('orderNo')){
     //       this.orderNo=this.getQueryVariable('orderNo')
     // }else{

--
Gitblit v1.8.0