Browse Source

修改积分展示

aaa 3 years ago
parent
commit
3b3f169cbe

+ 2 - 0
src/api/modules/user.js

@@ -6,6 +6,8 @@ export default {
     JTXT_GET_USER_ADMIN_USERS: "users",
     // 查询今日积分
     JTXT_GET_USER_DAIYL_POINTS: "user/{userName}/daily-points",
+    // 查询今日学习积分
+    JTXT_GET_USER_DAIYL_LEARN_POINTS: "/user/{userName}/daily-learningpoints",
     // 查询总积分
     JTXT_GET_USER_ALL_POINTS: "user/{userName}/total-points",
     // 查询学习积分

+ 1 - 1
src/views/home/person/rank.vue

@@ -46,7 +46,7 @@
                   {{ item.nickName || "userName" + (index + 1) }}
                 </div>
                 <span class="contentItemTopRowChildPoints">
-                  {{ item.points }}
+                  {{ item.points || 0 }}
                 </span>
                 <span class="contentItemTopRowChildSteps">积分</span>
               </div>

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

@@ -211,7 +211,7 @@ export default {
         userName: this.user.userInfo.userName
       };
       this.$_http
-        .get(this.$pathParams(this.$_API.JTXT_GET_USER_DAIYL_POINTS, path))
+        .get(this.$pathParams(this.$_API.JTXT_GET_USER_DAIYL_LEARN_POINTS, path))
         .then(res => {
           this.todayEarnPoints = res.data || 0;
         })