This commit is contained in:
jxxghp
2023-10-12 22:45:59 +08:00
parent e34f18799f
commit c94d5f7e7d
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -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"
} }
} }
+4 -4
View File
@@ -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>
+2 -2
View File
@@ -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">