This commit is contained in:
jxxghp
2024-04-17 19:31:50 +08:00
parent b9ee6b4039
commit d097c1c17c
+4 -1
View File
@@ -378,9 +378,12 @@ onMounted(fetchData)
<VIcon :icon="getIcon(item.type || '')" /> <VIcon :icon="getIcon(item.type || '')" />
</VAvatar> </VAvatar>
<div class="d-flex flex-column ms-1"> <div class="d-flex flex-column ms-1">
<span class="d-block text-high-emphasis min-w-20"> <span v-if="item.type === '电视剧'" class="d-block text-high-emphasis min-w-20">
{{ item?.title }} {{ item?.seasons }}{{ item?.episodes }} {{ item?.title }} {{ item?.seasons }}{{ item?.episodes }}
</span> </span>
<span v-else class="d-block text-high-emphasis min-w-20">
{{ item?.title }}
</span>
<small>{{ item?.category }}</small> <small>{{ item?.category }}</small>
</div> </div>
</div> </div>