mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 07:28:37 +08:00
fix bug
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "moviepilot",
|
"name": "moviepilot",
|
||||||
"version": "1.3.2-1",
|
"version": "1.3.2-2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"bin": "dist/service.js",
|
"bin": "dist/service.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -106,4 +106,4 @@
|
|||||||
"resolutions": {
|
"resolutions": {
|
||||||
"postcss": "8"
|
"postcss": "8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -217,10 +217,10 @@ watchEffect(() => {
|
|||||||
</VCard>
|
</VCard>
|
||||||
<div class="grid gap-3 grid-torrent-card items-start">
|
<div class="grid gap-3 grid-torrent-card items-start">
|
||||||
<TorrentCard
|
<TorrentCard
|
||||||
v-for="(data, index) in dataList"
|
v-for="(item, index) in dataList"
|
||||||
:key="index"
|
:key="`${index}_${item.torrent_info.title}_${item.torrent_info.site}`"
|
||||||
:torrent="data"
|
:torrent="item"
|
||||||
:more="data.more"
|
:more="item.more"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ watchEffect(() => {
|
|||||||
// 季过滤
|
// 季过滤
|
||||||
&& match(filterForm.season, meta_info.season_episode)
|
&& match(filterForm.season, meta_info.season_episode)
|
||||||
// 制作组过滤
|
// 制作组过滤
|
||||||
&& match(filterForm.releaseGroup, meta_info.resource_term)
|
&& match(filterForm.releaseGroup, meta_info.resource_team)
|
||||||
// 视频编码过滤
|
// 视频编码过滤
|
||||||
&& match(filterForm.videoCode, meta_info.video_encode)
|
&& match(filterForm.videoCode, meta_info.video_encode)
|
||||||
// 分辨率过滤
|
// 分辨率过滤
|
||||||
@@ -106,7 +106,7 @@ onMounted(() => {
|
|||||||
>
|
>
|
||||||
<TorrentItem
|
<TorrentItem
|
||||||
v-for="(item, index) in dataList"
|
v-for="(item, index) in dataList"
|
||||||
:key="index"
|
:key="`${index}_${item.torrent_info.title}_${item.torrent_info.site}`"
|
||||||
:torrent="item"
|
:torrent="item"
|
||||||
/>
|
/>
|
||||||
<VListItem v-if="dataList.length === 0">
|
<VListItem v-if="dataList.length === 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user