Browse Source

修改闯关答题

aaa 3 years ago
parent
commit
32b9ecbe52

+ 1 - 3
src/api/modules/user.js

@@ -29,8 +29,6 @@ export default {
     // 获取蓝信用户信息
     JTXT_GET_LAN_XIN_USER_INFO: "/lanXin/getUserInfo",
     // 工种列表
-    JTXT_GET_ENGINEERINGWORK_LIST: "/engineertypes",
-    // 事件通知
-    JTXT_POST_EVENTS_USERNAME: "/events/{userName}"
+    JTXT_GET_ENGINEERINGWORK_LIST: "/engineertypes"
   }
 };

+ 13 - 1
src/views/home/answer/through/through-question-doing.vue

@@ -373,6 +373,7 @@ export default {
       if (!(this.examQuestionList.length > 0)) {
         return;
       }
+      console.log("------" + this.answerIndex);
       this.examQuestionList[this.answerIndex].userAnswer = this.answerValue;
       this.answerStatus = this.getAnswerItemResultFun(
         this.examQuestionList[this.answerIndex]
@@ -429,9 +430,20 @@ export default {
     // 操作:下一题
     handleNextFun() {
       let nextIndex = this.answerIndex + 1;
-      if (nextIndex >= this.examQuestionList.length) {
+      // 最后一组的最后一题就结束考试
+      if (nextIndex >= this.examQuestionList.length && this.answerThroughNumber === 5) {
         this.examsEndFun(); // 结束考试
         return;
+      } else if (nextIndex >= this.examQuestionList.length) {
+        let grades = this.getUserExamAllPointsFun();
+        this.$router.replace({
+          name: "throughQuestionEnd",
+          params: {
+            allQuestionsNum: this.examQuestionList.length,
+            grades: grades
+          }
+        });
+        return;
       }
       this.handleExamQuestionItemFun(
         this.examQuestionList[nextIndex],

+ 0 - 20
src/views/home/answer/through/through-question-end.vue

@@ -78,26 +78,6 @@ export default {
       this.$router.replace({
         name: "throughQuestionDoing"
       });
-      //   调用接口
-      if (num >= 0) {
-        let path = {
-          userName: this.user.userInfo.userName
-        };
-        let params = {
-          upLimit: 10,
-          oncePoint: 10
-        };
-        this.$_http
-          .post(
-            this.$pathParams(this.$_API.JTXT_POST_EVENTS_USERNAME, path), params
-          )
-          .then(res => {
-            console.log("---" + JSON.stringify(res));
-          })
-          .catch(() => {
-            this.$store.commit("toggleLoading", false);
-          });
-      }
     }
   }
 };

+ 5 - 5
src/views/home/person/user-manual.vue

@@ -83,7 +83,7 @@ export default {
         {
           name: "今日必读",
           type: "MANDATORY_LEARNING_COMPLETE",
-          rule: "2分/每有效阅读一篇今日必读文章 上限10分",
+          rule: "2分/每有效阅读一篇今日必读文章",
           isFinish: false,
           getPoints: 0,
           totalPonits: 10,
@@ -93,7 +93,7 @@ export default {
         {
           name: "阅读文章",
           type: "LEARNING_COMPLETE",
-          rule: "1分/每有效阅读一篇非今日必读文章 上限5分",
+          rule: "1分/每有效阅读一篇非今日必读文章",
           isFinish: false,
           getPoints: 0,
           totalPonits: 5,
@@ -103,7 +103,7 @@ export default {
         {
           name: "今日答题",
           type: "DAILY_QUESTIONS",
-          rule: "1分/每答对一题 上限5分",
+          rule: "1分/每答对一题",
           isFinish: false,
           getPoints: 0,
           totalPonits: 5,
@@ -113,7 +113,7 @@ export default {
         {
           name: "每周答题",
           type: "WEEKLY_QUESTIONS",
-          rule: "1分/每答对一题 上限10分",
+          rule: "1分/每答对一题",
           isFinish: false,
           getPoints: 0,
           totalPonits: 10,
@@ -133,7 +133,7 @@ export default {
         {
           name: "答题闯关",
           type: "THROUGH_QUESTIONS",
-          rule: "10分/全部通关 上限10分",
+          rule: "10分/全部通关",
           isFinish: false,
           getPoints: 0,
           totalPonits: 10,