Browse Source

修改积分和答题闯关

aaa 3 years ago
parent
commit
a43a818af3

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

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

+ 7 - 7
src/views/home/answer/page-answer.vue

@@ -20,7 +20,7 @@
             <div>{{ item.title[1] }}</div>
           </div>
         </div>
-        <div style="width: 31%"></div>
+        <!-- <div style="width: 31%"></div> -->
       </div>
     </div>
     <!-- 竞赛答题 -->
@@ -64,12 +64,12 @@ export default {
     // 查询:答题练习的列表数据
     getAnswerPracticeListFun() {
       this.answerPracticeList = [
-        // {
-        //   id: 1,
-        //   url: require("@/assets/image/answer/01.png"),
-        //   title: ["不积跬步", "无以至千里"],
-        //   type: { name: "今日答题", code: "daily-questions" }
-        // },
+        {
+          id: 1,
+          url: require("@/assets/image/answer/01.png"),
+          title: ["不积跬步", "无以至千里"],
+          type: { name: "今日答题", code: "daily-questions" }
+        },
         {
           id: 2,
           url: require("@/assets/image/answer/02.png"),

+ 9 - 32
src/views/home/answer/through/through-question-doing.vue

@@ -245,15 +245,16 @@ export default {
           { params }
         )
         .then(res => {
-          console.log("--222--" + JSON.stringify(res.data));
           if (res.data) {
             let httpResultData = [];
-            res.data.forEach((item, index) => {
-              this.getExamQuestionsListFun(
-                item,
-                httpResultData,
-                index === res.data.length - 1
-              );
+            res.data.forEach(element => {
+              httpResultData.push(this.setPersonDataFun(element));
+              // 临时解决多个异步请求进行的问题
+              this.examQuestionList = httpResultData;
+              this.handleExamQuestionItemFun(this.examQuestionList[0], 0); // 设置第一题开始
+              let curTime = new Date();
+              this.answerTime.startTime = curTime; // 赋值开始时间
+              this.isInited = true;
             });
           }
         })
@@ -261,31 +262,7 @@ export default {
           this.$store.commit("toggleLoading", false);
         });
     },
-    // 查询:试题信息
-    async getExamQuestionsListFun(questionId, httpResultData, isLast) {
-      this.$_http
-        .get(
-          this.$pathParams(this.$_API.GET_JTXT_GET_EXAMS_ONE_QUESTIONS_LIST, {
-            questionId: questionId
-          })
-        )
-        .then(res => {
-          let resData = { ...res.data };
-          httpResultData.push(this.setPersonDataFun(resData));
-          if (isLast) {
-            // 临时解决多个异步请求进行的问题
-            this.examQuestionList = httpResultData;
-            this.handleExamQuestionItemFun(this.examQuestionList[0], 0); // 设置第一题开始
-            let curTime = new Date();
-            this.answerTime.startTime = curTime; // 赋值开始时间
-            this.isInited = true;
-            this.$store.commit("toggleLoading", false);
-          }
-        })
-        .catch(() => {
-          this.$store.commit("toggleLoading", false);
-        });
-    },
+
     // 方法:过滤试题的类型,添加用户作答的字段
     setPersonDataFun(httpResultDataItme) {
       let results = this.formatQuestionType(

+ 23 - 1
src/views/home/answer/through/through-question-end.vue

@@ -53,6 +53,7 @@ export default {
   mounted() {},
   computed: {
     ...mapState({
+      user: state => state.user,
       answerThroughNumber: state => state.answer.answerThroughNumber
     })
   },
@@ -69,13 +70,34 @@ export default {
     },
     // 操作:继续下一关
     handleStartThroughFun() {
+      let num = this.answerThroughNumber + 1;
       this.$store.commit("updateAnswerItemStore", {
         field: "answerThroughNumber",
-        value: this.answerThroughNumber + 1
+        value: num
       });
       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);
+          });
+      }
     }
   }
 };

+ 14 - 6
src/views/home/person/learn-point-rule.vue

@@ -28,16 +28,24 @@ export default {
         { name: "登录", content: "每日首次登录获得1积分" },
         {
           name: "今日必读",
-          content: "有效阅读完今日必学的一篇文章获得2积分"
-        },
-        {
-          name: "今日必答",
-          content: "完成今日必答的所有题目获得2积分"
+          content: "2分/每有效阅读一篇今日必读文章 上限10分"
         },
         {
           name: "阅读文章",
           content:
-            "完成今日必学的文章之后每有效阅读一篇其他文章获得一积分,上限10积分"
+            "1分/每有效阅读一篇非今日必读文章 上限5分"
+        },
+        {
+          name: "今日答题",
+          content: "1分/每答对一题 上限5分"
+        },
+        {
+          name: "每周答题",
+          content: "1分/每答对一题 上限10分"
+        },
+        {
+          name: "闯关答题",
+          content: "10分/全部通关 上限10分"
         },
         {
           name: "答题",