From c2a938eb722839c33849b6a30469f62e343d8718 Mon Sep 17 00:00:00 2001
From: zq <136432190602163.com>
Date: Fri, 5 Dec 2025 15:32:39 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8E=92=E8=A1=8C=E6=A6=9C?=
=?UTF-8?q?=E9=BB=98=E8=AE=A4=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF=E9=97=AE?=
=?UTF-8?q?=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/super/Ranking/RankBatchList.vue | 35 ++++++++++++++++++++-----------
1 file changed, 23 insertions(+), 12 deletions(-)
diff --git a/src/views/super/Ranking/RankBatchList.vue b/src/views/super/Ranking/RankBatchList.vue
index 0588b70..9999c9f 100644
--- a/src/views/super/Ranking/RankBatchList.vue
+++ b/src/views/super/Ranking/RankBatchList.vue
@@ -2,7 +2,7 @@
{{ pageTitle }}
-
+
@@ -23,8 +23,8 @@
-
+
= 0; i--) {
- this.labels.push((year - i) + '年' + this.rank_type_desc[this.dataRank]);
+ this.labels.push((year - i) + '年' + this.rank_type_desc[this.rank_type]);
}
} else {
const monthLabels = [];
@@ -478,7 +487,7 @@ export default {
let m = month - i;
if (m <= 0) m += 12;
- monthLabels.push(m + '月' + this.rank_type_desc[this.dataRank]);
+ monthLabels.push(m + '月' + this.rank_type_desc[this.rank_type]);
}
this.labels = monthLabels;
}
@@ -526,6 +535,7 @@ export default {
})
},
getTypeRanking() {
+ console.log(this.dataRank,'that.dataRank===');
//产品排行
const that = this
that.tableData = []
@@ -546,6 +556,7 @@ export default {
that.total = response.data.total
})
}).catch(error => {
+ this.loading = false;
console.error(error, 'error')
})
},