mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
fix ui
This commit is contained in:
@@ -130,13 +130,12 @@ onMounted(() => {
|
|||||||
<VAvatar
|
<VAvatar
|
||||||
class="rounded"
|
class="rounded"
|
||||||
variant="flat"
|
variant="flat"
|
||||||
rounded="0"
|
|
||||||
@click.stop="openTorrentDetail"
|
@click.stop="openTorrentDetail"
|
||||||
>
|
>
|
||||||
<VImg :src="siteIcon" />
|
<VImg :src="siteIcon" />
|
||||||
</VAvatar>
|
</VAvatar>
|
||||||
</template>
|
</template>
|
||||||
<VListItemTitle>
|
<VListItemTitle class="break-words overflow-visible whitespace-break-spaces">
|
||||||
{{ torrent?.title }}
|
{{ torrent?.title }}
|
||||||
<span class="text-green-700 ms-2 text-sm">↑{{ torrent?.seeders }}</span>
|
<span class="text-green-700 ms-2 text-sm">↑{{ torrent?.seeders }}</span>
|
||||||
<span class="text-orange-700 ms-2 text-sm">↓{{ torrent?.peers }}</span>
|
<span class="text-orange-700 ms-2 text-sm">↓{{ torrent?.peers }}</span>
|
||||||
|
|||||||
@@ -101,7 +101,10 @@ onMounted(() => {
|
|||||||
<template>
|
<template>
|
||||||
<VRow>
|
<VRow>
|
||||||
<VCol>
|
<VCol>
|
||||||
<VList lines="three">
|
<VList
|
||||||
|
lines="three"
|
||||||
|
class="rounded"
|
||||||
|
>
|
||||||
<TorrentItem
|
<TorrentItem
|
||||||
v-for="(item, index) in dataList"
|
v-for="(item, index) in dataList"
|
||||||
:key="index"
|
:key="index"
|
||||||
@@ -115,9 +118,9 @@ onMounted(() => {
|
|||||||
<VCol
|
<VCol
|
||||||
xl="2"
|
xl="2"
|
||||||
md="3"
|
md="3"
|
||||||
class="d-none d-md-block h-100"
|
class="d-none d-md-block"
|
||||||
>
|
>
|
||||||
<VList lines="one" class="sticky top-5">
|
<VList lines="one" class="rounded">
|
||||||
<VListSubheader v-if="siteFilterOptions.length > 0">
|
<VListSubheader v-if="siteFilterOptions.length > 0">
|
||||||
站点
|
站点
|
||||||
</VListSubheader>
|
</VListSubheader>
|
||||||
|
|||||||
Reference in New Issue
Block a user