Browse Source

定时抓拍的结果在非考试页不显示

Michael Wang 6 years ago
parent
commit
9342b66ab0
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/components/FaceRecognition/FaceRecognition.vue

+ 4 - 0
src/components/FaceRecognition/FaceRecognition.vue

@@ -250,6 +250,10 @@ export default {
         }
       } catch (e) {
         console.log(e);
+        if (this.$route.name !== "OnlineExamingHome") {
+          // 非考试页,不显示结果,也不继续查询
+          return;
+        }
         this.$Message.error(e.message);
         throw e.message;
       }