|
@@ -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;
|