From 4a8f68346a7bd436eefadd73e2b6004dce70903a Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Mon, 26 May 2025 14:14:03 +1000 Subject: [PATCH] =?UTF-8?q?style(Playroom):=20=E4=BC=98=E5=8C=96=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=92=8C=E5=B8=83=E5=B1=80=E9=97=B4?= =?UTF-8?q?=E8=B7=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除多余的空格和换行符 - 统一按钮和布局的样式 - 调整元素间距提升视觉一致性 --- src/pages/Playroom.vue | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/pages/Playroom.vue b/src/pages/Playroom.vue index 999436d..2f471d8 100644 --- a/src/pages/Playroom.vue +++ b/src/pages/Playroom.vue @@ -138,7 +138,7 @@ function makePlayQueueListDismiss() { function getCurrentTrack() { if (playQueueStore.playMode.shuffle) { - return playQueueStore.list[playQueueStore.shuffleList[playQueueStore.currentIndex]] + return playQueueStore.list[playQueueStore.shuffleList[playQueueStore.currentIndex]] } else { return playQueueStore.list[playQueueStore.currentIndex] } @@ -146,18 +146,15 @@ function getCurrentTrack() {