From dec154c04284c161a369ed71c6025d489829c259 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Thu, 2 Jul 2026 12:42:56 +0800 Subject: [PATCH] Rename playback status label to continue watching --- src/components/cards/PlayingBackdropCard.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/cards/PlayingBackdropCard.vue b/src/components/cards/PlayingBackdropCard.vue index 0191cd39..5b048079 100644 --- a/src/components/cards/PlayingBackdropCard.vue +++ b/src/components/cards/PlayingBackdropCard.vue @@ -30,11 +30,11 @@ const progressValue = computed(() => { return Math.min(Math.max(percent, 0), 100) }) -// 是否展示继续播放状态。 +// 是否存在可续播进度。 const hasProgress = computed(() => progressValue.value > 0) -// 顶部状态标签。 -const statusLabel = computed(() => (hasProgress.value ? '正在播放' : '待播放')) +// 顶部状态标签,接口返回的是继续观看列表而非实时播放会话。 +const statusLabel = computed(() => (hasProgress.value ? '继续观看' : '待播放')) // 右上角进度标签。 const progressLabel = computed(() => (hasProgress.value ? `${Math.round(progressValue.value)}%` : 'NEW'))