mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 23:56:42 +08:00
fix ui
This commit is contained in:
@@ -52,23 +52,23 @@ function openTmdbPage(type: string, tmdbId: number) {
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
<VCardItem class="pb-1">
|
<VCardItem class="pb-1">
|
||||||
<VCardTitle>
|
<VCardTitle class="text-center text-md-left">
|
||||||
{{ context?.media_info?.title || context?.meta_info?.name }}
|
{{ context?.media_info?.title || context?.meta_info?.name }}
|
||||||
{{ context?.meta_info?.season_episode }}
|
{{ context?.meta_info?.season_episode }}
|
||||||
</VCardTitle>
|
</VCardTitle>
|
||||||
<VCardSubtitle>
|
<VCardSubtitle class="text-center text-md-left">
|
||||||
{{ context?.media_info?.year || context?.meta_info?.year }}
|
{{ context?.media_info?.year || context?.meta_info?.year }}
|
||||||
</VCardSubtitle>
|
</VCardSubtitle>
|
||||||
</VCardItem>
|
</VCardItem>
|
||||||
|
|
||||||
<VCardText
|
<VCardText
|
||||||
v-if="context?.media_info?.overview"
|
v-if="context?.media_info?.overview"
|
||||||
class="line-clamp-4 overflow-hidden text-ellipsis ..."
|
class="line-clamp-4 overflow-hidden text-ellipsis text-center text-md-left ..."
|
||||||
>
|
>
|
||||||
{{ context?.media_info?.overview }}
|
{{ context?.media_info?.overview }}
|
||||||
</VCardText>
|
</VCardText>
|
||||||
|
|
||||||
<VCardItem>
|
<VCardItem class="text-center text-md-left">
|
||||||
<!-- 类型 -->
|
<!-- 类型 -->
|
||||||
<VChip
|
<VChip
|
||||||
v-if="context?.media_info?.type || context?.meta_info?.type"
|
v-if="context?.media_info?.type || context?.meta_info?.type"
|
||||||
|
|||||||
@@ -430,9 +430,11 @@ onBeforeMount(() => {
|
|||||||
<div class="relative z-20 flex items-center false"><span>已入库</span></div>
|
<div class="relative z-20 flex items-center false"><span>已入库</span></div>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<h1 class="flex flex-row items-baseline justify-start lg:justify-center">
|
<h1 class="d-flex flex-column flex-lg-row align-baseline justify-center justify-lg-start">
|
||||||
<span>{{ mediaDetail.title }}</span>
|
<div>{{ mediaDetail.title }}</div>
|
||||||
<span v-if="mediaDetail.year" class="text-lg">({{ mediaDetail.year }})</span>
|
<div v-if="mediaDetail.year" class="text-lg align-self-center align-self-lg-end">
|
||||||
|
({{ mediaDetail.year }})
|
||||||
|
</div>
|
||||||
</h1>
|
</h1>
|
||||||
<span class="media-attributes">
|
<span class="media-attributes">
|
||||||
<span v-if="mediaDetail.runtime || mediaDetail.episode_run_time[0]">{{ mediaDetail.runtime || mediaDetail.episode_run_time[0] }} 分钟</span>
|
<span v-if="mediaDetail.runtime || mediaDetail.episode_run_time[0]">{{ mediaDetail.runtime || mediaDetail.episode_run_time[0] }} 分钟</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user