mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-07-10 23:13:20 +08:00
单独显示流媒体平台
This commit is contained in:
@@ -769,6 +769,8 @@ export interface MetaInfo {
|
|||||||
audio_term: string
|
audio_term: string
|
||||||
// 资源类型+特效
|
// 资源类型+特效
|
||||||
edition: string
|
edition: string
|
||||||
|
// 流媒体平台
|
||||||
|
web_source: string
|
||||||
// 应用的自定义识别词
|
// 应用的自定义识别词
|
||||||
apply_words: string[]
|
apply_words: string[]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -204,6 +204,11 @@ onMounted(() => {
|
|||||||
|
|
||||||
<!-- 资源标签区 -->
|
<!-- 资源标签区 -->
|
||||||
<div class="d-flex flex-wrap gap-1 mb-2">
|
<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">
|
<VChip v-if="meta?.edition" class="chip-edition rounded-sm" size="x-small" variant="elevated">
|
||||||
{{ meta?.edition }}
|
{{ meta?.edition }}
|
||||||
@@ -412,6 +417,11 @@ onMounted(() => {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chip-web-source {
|
||||||
|
background-color: #ff2d00;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.chip-edition {
|
.chip-edition {
|
||||||
background-color: #f44336;
|
background-color: #f44336;
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
@@ -161,6 +161,11 @@ onMounted(() => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="d-flex flex-wrap gap-1 mb-2">
|
<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">
|
<VChip v-if="meta?.edition" class="chip-edition rounded-sm" size="x-small" variant="elevated">
|
||||||
{{ meta?.edition }}
|
{{ meta?.edition }}
|
||||||
@@ -260,6 +265,11 @@ onMounted(() => {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chip-web-source {
|
||||||
|
background-color: #ff2d00;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
.chip-edition {
|
.chip-edition {
|
||||||
background-color: #f44336;
|
background-color: #f44336;
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
Reference in New Issue
Block a user