From 6d638770cb6ddb37e966780db7e87f354a8ad8b7 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 22 Jan 2026 15:56:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(cp=E6=8E=92=E8=A1=8C=E6=A6=9C):=20?= =?UTF-8?q?=E5=8E=86=E5=8F=B2=E6=A6=9C=E9=A6=96=E4=B8=BA=E7=A9=BA=EF=BC=8C?= =?UTF-8?q?=E6=9A=82=E6=97=B6=E8=AE=BE=E7=BD=AE=E9=95=BF=E5=BA=A6=E4=B8=BA?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Ranking/Couple/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/Ranking/Couple/index.vue b/src/views/Ranking/Couple/index.vue index 8d4090c..2267d49 100644 --- a/src/views/Ranking/Couple/index.vue +++ b/src/views/Ranking/Couple/index.vue @@ -1412,7 +1412,7 @@ const letterTextLength = ref(0) // 情书内容字数 const resultShowIndex = ref(0) // 抽奖结果索引 -const seasonTop1List = ref([{}]) // 赛季榜Top1列表 +const seasonTop1List = ref([]) // 赛季榜Top1列表 const listLeftPosition = ref('0') //top历史榜单 const centerIndex = ref(0) // 默认中间项的索引为1 // 添加触摸滑动相关变量 @@ -1671,7 +1671,8 @@ const getLoveLetterWall = async () => { const getCpSeasonTop1List = async () => { const resCpSeasonTop1List = await apiGetCpSeasonTop1List() if (resCpSeasonTop1List.status && resCpSeasonTop1List.body) { - seasonTop1List.value = resCpSeasonTop1List.body + // seasonTop1List.value = resCpSeasonTop1List.body + seasonTop1List.value = [{}] } }