From e4267b12f53bbf9540831f75eb4a648cc8f5b4f1 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Fri, 28 Nov 2025 11:50:21 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=80=BB=E6=8E=92=E8=A1=8C=E6=A6=9C):=20?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E5=8F=91=E9=80=81=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E7=9A=84=E5=8F=82=E6=95=B0=E6=B2=A1=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Ranking/Overall/Ranking.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/Ranking/Overall/Ranking.vue b/src/views/Ranking/Overall/Ranking.vue index 78a3b06..6693b68 100644 --- a/src/views/Ranking/Overall/Ranking.vue +++ b/src/views/Ranking/Overall/Ranking.vue @@ -447,6 +447,8 @@ watchEffect(() => { rankItemBackground.value = 'linear-gradient(97deg, rgba(50, 34, 21, 0.60) 12.03%, rgba(99, 52, 33, 0.60) 100.37%)' rankItemBorder.value = 'solid #FFA166' + + params_type.value = 'GIFTS_SEND' } if (rankingType.value == 'Charm') { backgroundColor.value = '#112C1E' @@ -459,6 +461,8 @@ watchEffect(() => { rankItemBackground.value = 'linear-gradient(97deg, rgba(21, 50, 22, 0.60) 12.03%, rgba(33, 99, 40, 0.60) 100.37%)' rankItemBorder.value = 'solid #66FF82' + + params_type.value = 'GIFTS_RECEIVED' } if (rankingType.value == 'Room') { backgroundColor.value = '#211031' @@ -471,6 +475,8 @@ watchEffect(() => { rankItemBackground.value = 'linear-gradient(97deg, rgba(33, 21, 50, 0.60) 12.03%, rgba(60, 33, 99, 0.60) 100.37%)' rankItemBorder.value = 'solid #A366FF' + + params_type.value = 'ROOM_GIFTS' } })