Merge pull request #81 from WangEdward/main

feat: add search_imdbid
This commit is contained in:
jxxghp
2024-03-05 12:57:44 +08:00
committed by GitHub
2 changed files with 13 additions and 0 deletions

View File

@@ -80,6 +80,9 @@ export interface Subscribe {
// 是否洗版数字或者boolean
best_version: any
// 使用 imdbid 搜索
search_imdbid?: boolean
// 当前优先级
current_priority: number

View File

@@ -30,6 +30,7 @@ const subscribeForm = ref<Subscribe>({
total_episode: 0,
start_episode: 0,
best_version: 0,
search_imdbid: false,
sites: [],
type: '',
name: '',
@@ -343,6 +344,15 @@ watchEffect(() => {
label="洗版"
/>
</VCol>
<VCol
cols="12"
md="4"
>
<VSwitch
v-model="subscribeForm.search_imdbid"
label="使用 ImdbID 搜索"
/>
</VCol>
</VRow>
</VForm>
</VCardText>