This commit is contained in:
jxxghp
2023-08-29 12:11:09 +08:00
parent 1cc64c7d21
commit 909857f146
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ const dropdownItems = ref([
</VAvatar>
</template>
<VCardItem class="py-1">
<VCardTitle>
<VCardTitle class="break-words overflow-visible whitespace-break-spaces">
{{ media?.title }} {{ meta?.season_episode }}
<span class="text-green-700 ms-2 text-sm">{{ torrent?.seeders }}</span>
<span class="text-orange-700 ms-2 text-sm">{{ torrent?.peers }}</span>

View File

@@ -86,7 +86,7 @@ const transferForm = reactive({
// 生成1到50季的下拉框选项
const seasonItems = ref(
Array.from({ length: 50 }, (_, i) => i + 1).map(item => ({
Array.from({ length: 51 }, (_, i) => i).map(item => ({
title: `${item}`,
value: item,
})),