소스 검색

获取活体检测信息失败,退出

Michael Wang 5 년 전
부모
커밋
882f5bc3f0
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/features/OnlineExam/Examing/FaceMotion/FaceMotion.vue
  2. 1 1
      src/utils/axiosRetry.js

+ 1 - 1
src/features/OnlineExam/Examing/FaceMotion/FaceMotion.vue

@@ -324,7 +324,7 @@ export default {
         "/api/ecs_oe_student/faceBiopsy/getFaceBiopsyInfo?examRecordDataId=" +
           examRecordDataId
       );
-      if (typeof faceBiopsyInfoData === undefined) {
+      if (typeof faceBiopsyInfoData === "undefined") {
         this.$Message.error({
           content: "获取活体检测信息失败,退出登录",
           duration: 15,

+ 1 - 1
src/utils/axiosRetry.js

@@ -12,7 +12,7 @@ Vue.prototype.$httpGetRetry = async function(...args) {
         await new Promise(resolve => setTimeout(resolve, 1000));
         continue; // 网络不通
       } else {
-        return error; // 其他错误不管
+        return; // 其他错误不管
       }
     }
   }