From c26c3c4284fce8b8e7384d3b374a364936bfc56b Mon Sep 17 00:00:00 2001 From: jxxghp Date: Fri, 3 Jul 2026 19:51:35 +0800 Subject: [PATCH] Remove playing backdrop status badge --- src/components/cards/PlayingBackdropCard.vue | 37 -------------------- 1 file changed, 37 deletions(-) diff --git a/src/components/cards/PlayingBackdropCard.vue b/src/components/cards/PlayingBackdropCard.vue index 5b048079..07058e2f 100644 --- a/src/components/cards/PlayingBackdropCard.vue +++ b/src/components/cards/PlayingBackdropCard.vue @@ -33,9 +33,6 @@ const progressValue = computed(() => { // 是否存在可续播进度。 const hasProgress = computed(() => progressValue.value > 0) -// 顶部状态标签,接口返回的是继续观看列表而非实时播放会话。 -const statusLabel = computed(() => (hasProgress.value ? '继续观看' : '待播放')) - // 右上角进度标签。 const progressLabel = computed(() => (hasProgress.value ? `${Math.round(progressValue.value)}%` : 'NEW')) @@ -124,11 +121,6 @@ async function goPlay() {
-
- - {{ statusLabel }} -
-
{{ progressLabel }}
@@ -228,7 +220,6 @@ async function goPlay() { linear-gradient(180deg, rgba(2, 6, 12, 0%) 24%, rgba(2, 6, 12, 72%) 68%, rgba(2, 6, 12, 96%) 100%); } -.playing-card__status, .playing-card__percent, .playing-card__play, .playing-card__content, @@ -237,34 +228,6 @@ async function goPlay() { z-index: 2; } -.playing-card__status { - display: inline-flex; - align-items: center; - border: 1px solid rgba(255, 255, 255, 22%); - border-radius: 999px; - backdrop-filter: blur(12px); - background: rgba(5, 10, 16, 72%); - block-size: 26px; - gap: 8px; - inset-block-start: 12px; - inset-inline-start: 12px; - padding: 0 12px; -} - -.playing-card__status-dot { - border-radius: 999px; - background: rgb(var(--v-theme-success)); - block-size: 8px; - box-shadow: 0 0 0 4px rgba(var(--v-theme-success), 16%); - inline-size: 8px; -} - -.playing-card__status-text { - font-size: 0.75rem; - font-weight: 700; - line-height: 1; -} - .playing-card__percent { display: inline-flex; align-items: center;