zhouhao
2022-01-06 55f34d53ce7f1e914a8bb707723187827b88a5b3
src/views/main/queryres.vue
@@ -29,7 +29,9 @@
      orderNo:0,
      ResultIs:false,
      examineIs:true,
      dataInfo:{}
      dataInfo:{},
      bizId:this.$route.query.bizId,   //订单编号
      bizType:this.$route.query.bizType,  //订单类型
    };
  },
  //监听属性 类似于data概念
@@ -42,16 +44,16 @@
      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
                         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){  //人脸识别中
                          
                     }