Эх сурвалжийг харах

如果考试设置没有人脸检测,则减少等待抓拍的时间

Michael Wang 6 жил өмнө
parent
commit
e5224b30b8

+ 3 - 1
src/features/OnlineExam/Examing/ExamingHome.vue

@@ -510,7 +510,9 @@ export default {
         delay = 0;
       }
       // 给抓拍照片多一秒处理时间
-      delay = delay + 1;
+      if (this.faceEnable) {
+        delay = delay + 1;
+      }
       setTimeout(() => this.realSubmitPaperStep2(), delay * 1000);
       this.submitCount = 1;
     },