From 427fc5905c9e859c72daae27d92325d8a5597b07 Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Sun, 25 May 2025 20:27:48 +1000 Subject: [PATCH] =?UTF-8?q?fix(Playroom):=20=E9=BB=98=E8=AE=A4=E9=9A=90?= =?UTF-8?q?=E8=97=8F=E6=92=AD=E6=94=BE=E9=98=9F=E5=88=97=E5=AF=B9=E8=AF=9D?= =?UTF-8?q?=E6=A1=86=E5=B9=B6=E4=BC=98=E5=8C=96=E6=AD=8C=E6=9B=B2=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 默认隐藏播放队列对话框以避免不必要的干扰,并优化歌曲信息显示,防止文本溢出 --- src/pages/Playroom.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/Playroom.vue b/src/pages/Playroom.vue index be04517..da10587 100644 --- a/src/pages/Playroom.vue +++ b/src/pages/Playroom.vue @@ -29,7 +29,7 @@ const playQueueDialogContainer = useTemplateRef('playQueueDialogContainer') const playQueueDialog = useTemplateRef('playQueueDialog') const displayTimeLeft = ref(false) -const presentQueueListDialog = ref(true) +const presentQueueListDialog = ref(false) onMounted(() => { Draggable.create(progressBarThumb.value, { @@ -254,9 +254,9 @@ function makePlayQueueListDismiss() { -
-
{{ track.song.name }}
-
{{ artistsOrganize(track.song.artists?? []) }} — {{ track.album?.name?? '未知专辑' }}
+
+
{{ track.song.name }}
+
{{ artistsOrganize(track.song.artists?? []) }} — {{ track.album?.name?? '未知专辑' }}