Explorar o código

添加测试环境

aaa %!s(int64=4) %!d(string=hai) anos
pai
achega
49314b5142

+ 1 - 1
.env.testing

@@ -1 +1 @@
-VUE_APP_JTXT_URL = "http://120.77.221.199:7000"
+VUE_APP_JTXT_URL = "http://8.141.68.219:8080"

+ 5 - 5
src/views/home/answer/page-answer-recruit.vue

@@ -161,16 +161,16 @@ export default {
         return;
       }
       this.$store.commit("toggleLoading", true);
-      let params = {
-        type: "aaaaaaaa"
-      };
+      //   let params = {
+      //     type: "aaaaaaaa"
+      //   };
       this.$_http
         .post(
           this.$pathParams(this.$_API.POST_JTXT_GET_EXAMS_START, {
             examId: this.answerRecruitId
           }),
-          this.userInfo,
-          { params }
+          this.userInfo
+        //   { params }
         )
         .then(res => {
           if (res.data) {

+ 5 - 5
src/views/home/exam/page-exam-item-doing.vue

@@ -205,16 +205,16 @@ export default {
     // 方法:开始考试
     examStartFun() {
       this.$store.commit("toggleLoading", true);
-      let params = {
-        type: "aaaaaaaa"
-      };
+      //   let params = {
+      //     type: "aaaaaaaa"
+      //   };
       this.$_http
         .post(
           this.$pathParams(this.$_API.POST_JTXT_GET_EXAMS_START, {
             examId: this.examItem.id
           }),
-          this.userInfo,
-          { params }
+          this.userInfo
+          //   { params }
         )
         .then(res => {
           if (res.data) {

+ 15 - 2
src/views/home/index.vue

@@ -98,11 +98,24 @@ export default {
     initFun() {
       this.$store.commit("updateUserItemStore", {
         field: "userInfo",
+        // value: {
+        //   id: "testuser-DHjjEuxXbN",
+        //   encodedPassword: "string",
+        //   userStatus: "suspended",
+        //   userName: "testuser-DHjjEuxXbN",
+        //   email: "test@gmail.com",
+        //   firstName: "一",
+        //   lastName: "张",
+        //   studyId: "U00000",
+        //   phone: "13060901234",
+        //   nickName: "小强",
+        //   group: "临时用户"
+        // }
         value: {
-          id: "testuser-DHjjEuxXbN",
+          id: "testuser-gjcJJmahwR",
           encodedPassword: "string",
           userStatus: "suspended",
-          userName: "testuser-DHjjEuxXbN",
+          userName: "testuser-gjcJJmahwR",
           email: "test@gmail.com",
           firstName: "一",
           lastName: "张",

+ 2 - 2
src/views/home/person/exam-history.vue

@@ -28,7 +28,7 @@
                 'exam-point': true,
                 'exam-point-green': item.points >= 90,
                 'exam-point-yellow': item.points >= 60 && item.points < 90,
-                'exam-point-red': item.points < 60
+                'exam-point-red': item.points < 60,
               }"
             >
               {{ item.points }}
@@ -73,6 +73,7 @@ export default {
           res.data.forEach((item, index) => {
             this.getExamDetailFun(item, index, index + 1 === res.data.length);
           });
+          this.finished = true;
         })
         .catch(() => {
           this.$store.commit("toggleLoading", false);
@@ -89,7 +90,6 @@ export default {
         .then(res => {
           this.examHistoryList.push({ ...item, examName: res.data.name });
           if (isLast) {
-            this.finished = true;
             this.$store.commit("toggleLoading", false);
           }
         })