فهرست منبع

重复获取二维码

Michael Wang 5 سال پیش
والد
کامیت
b9a78273be
1فایلهای تغییر یافته به همراه9 افزوده شده و 0 حذف شده
  1. 9 0
      src/features/OnlineExam/Examing/TextQuestionView.vue

+ 9 - 0
src/features/OnlineExam/Examing/TextQuestionView.vue

@@ -302,9 +302,18 @@ export default {
   },
   created() {
     this.fetchQRCode();
+
+    this.fetchQRCodeInterval = setInterval(() => {
+      if (!this.qrValue) {
+        this.fetchQRCode();
+      } else {
+        clearInterval(this.fetchQRCodeInterval);
+      }
+    }, 6 * 1000);
   },
   beforeDestroy() {
     clearTimeout(this.fetchQRCodeTimeout);
+    clearInterval(this.fetchQRCodeInterval);
   },
   methods: {
     ...mapMutations(["updateExamQuestion"]),