Pārlūkot izejas kodu

排名清空数据

aaa 3 gadi atpakaļ
vecāks
revīzija
48b50d5030
1 mainītis faili ar 3 papildinājumiem un 4 dzēšanām
  1. 3 4
      src/views/home/person/rank.vue

+ 3 - 4
src/views/home/person/rank.vue

@@ -147,7 +147,9 @@ export default {
       this.$_http
         .get(this.$_API.JTXT_GET_LEADERBOARD, { params })
         .then(res => {
-          console.log(res.data);
+          // 历史数据先清空
+          this.rankListTopThree = [];
+          this.rankListOthers = [];
           if (res.data && res.data.users) {
             res.data.users.forEach((item, index) => {
               if (index < 3) {
@@ -156,9 +158,6 @@ export default {
                 this.rankListOthers.push(item);
               }
             });
-          } else {
-            this.rankListTopThree = [];
-            this.rankListOthers = [];
           }
           this.finished = true;
           this.loading = false;