From be81cfc405f90a1ca28e333321c1ebd7cc83f581 Mon Sep 17 00:00:00 2001
From: pengda <10266652509@qq.com>
Date: Thu, 24 Apr 2025 18:35:22 +0800
Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=A1=B5=E6=A0=87=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/router/index.js                       | 4 ++--
 src/views/super/Ranking/RankBatchList.vue | 2 ++
 src/views/super/Ranking/RankDetail.vue    | 2 ++
 src/views/super/Ranking/RankList.vue      | 2 ++
 4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/router/index.js b/src/router/index.js
index ec131ab..60a06ae 100755
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -182,13 +182,13 @@ const routes = [{
     path: '/super/ranking/detail',
     name: '详情',
     component: () => import( /* webpackChunkName: "Ranking" */ '../views/super/Ranking/RankDetail.vue'),
-    props: {rank_type: 1, type: 'day', showDateSelect: false}
+    props: {pageTitle:'详情',rank_type: 1, type: 'day', showDateSelect: false}
   },
   {
     path: '/super/ranking/list',
     name: '列表',
     component: () => import( /* webpackChunkName: "Ranking" */ '../views/super/Ranking/RankList.vue'),
-    props: {}
+    props: {pageTitle:'排行',}
   },
 ]
 
diff --git a/src/views/super/Ranking/RankBatchList.vue b/src/views/super/Ranking/RankBatchList.vue
index 876e835..ebbdade 100644
--- a/src/views/super/Ranking/RankBatchList.vue
+++ b/src/views/super/Ranking/RankBatchList.vue
@@ -249,6 +249,8 @@ export default {
     },
     methods: {
         init() {
+            document.title = this.pageTitle;
+
             this.text = this.getNowDate()
             this.dataType = this.type
             this.dataRank = this.rank_type
diff --git a/src/views/super/Ranking/RankDetail.vue b/src/views/super/Ranking/RankDetail.vue
index 9cb972b..e0f1745 100644
--- a/src/views/super/Ranking/RankDetail.vue
+++ b/src/views/super/Ranking/RankDetail.vue
@@ -306,6 +306,8 @@ export default {
     },
     methods: {
         init() {
+            document.title = this.pageTitle;
+
             this.text = ""
             if (this.showDateSelect) this.text = this.getNowYear()
             this.dataRank = this.rank_type
diff --git a/src/views/super/Ranking/RankList.vue b/src/views/super/Ranking/RankList.vue
index f6151ed..a0c8f3e 100644
--- a/src/views/super/Ranking/RankList.vue
+++ b/src/views/super/Ranking/RankList.vue
@@ -287,6 +287,8 @@ export default {
     },
     methods: {
         init() {
+            document.title = this.pageTitle;
+
             this.text = this.getNowDate()
             this.dataType = this.type
             this.dataRank = this.rank_type