单独显示流媒体平台

This commit is contained in:
jxxghp
2025-07-01 17:14:03 +08:00
parent 1bba7103c8
commit d0aa26441c
3 changed files with 22 additions and 0 deletions

View File

@@ -769,6 +769,8 @@ export interface MetaInfo {
audio_term: string
// 资源类型+特效
edition: string
// 流媒体平台
web_source: string
// 应用的自定义识别词
apply_words: string[]
}

View File

@@ -204,6 +204,11 @@ onMounted(() => {
<!-- 资源标签区 -->
<div class="d-flex flex-wrap gap-1 mb-2">
<!-- 流媒体平台 -->
<VChip v-if="meta?.web_source" class="chip-web-source rounded-sm" size="x-small" variant="elevated">
{{ meta?.web_source }}
</VChip>
<!-- 版本标签 -->
<VChip v-if="meta?.edition" class="chip-edition rounded-sm" size="x-small" variant="elevated">
{{ meta?.edition }}
@@ -412,6 +417,11 @@ onMounted(() => {
color: white;
}
.chip-web-source {
background-color: #ff2d00;
color: white;
}
.chip-edition {
background-color: #f44336;
color: white;

View File

@@ -161,6 +161,11 @@ onMounted(() => {
</div>
<div class="d-flex flex-wrap gap-1 mb-2">
<!-- 流媒体平台 -->
<VChip v-if="meta?.web_source" class="chip-web-source rounded-sm" size="x-small" variant="elevated">
{{ meta?.web_source }}
</VChip>
<!-- 版本标签 -->
<VChip v-if="meta?.edition" class="chip-edition rounded-sm" size="x-small" variant="elevated">
{{ meta?.edition }}
@@ -260,6 +265,11 @@ onMounted(() => {
color: white;
}
.chip-web-source {
background-color: #ff2d00;
color: white;
}
.chip-edition {
background-color: #f44336;
color: white;