feat 详情页支持IMDBID搜索

This commit is contained in:
jxxghp
2023-08-24 08:32:58 +08:00
parent 55abc47d0e
commit 4491e80f6a
5 changed files with 35 additions and 4 deletions
+4
View File
@@ -9,6 +9,9 @@ const keyword = route.query?.keyword?.toString() ?? ''
// 查询类型
const type = route.query?.type?.toString() ?? ''
// 搜索字段
const area = route.query?.area?.toString() ?? ''
</script>
<template>
@@ -16,6 +19,7 @@ const type = route.query?.type?.toString() ?? ''
<TorrentCardListView
:keyword="keyword"
:type="type"
:area="area"
/>
</div>
</template>