mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 23:56:42 +08:00
feat: add search_imdbid
This commit is contained in:
@@ -80,6 +80,9 @@ export interface Subscribe {
|
|||||||
// 是否洗版,数字或者boolean
|
// 是否洗版,数字或者boolean
|
||||||
best_version: any
|
best_version: any
|
||||||
|
|
||||||
|
// 使用 imdbid 搜索
|
||||||
|
search_imdbid?: boolean
|
||||||
|
|
||||||
// 当前优先级
|
// 当前优先级
|
||||||
current_priority: number
|
current_priority: number
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@ const subscribeForm = ref<Subscribe>({
|
|||||||
total_episode: 0,
|
total_episode: 0,
|
||||||
start_episode: 0,
|
start_episode: 0,
|
||||||
best_version: 0,
|
best_version: 0,
|
||||||
|
search_imdbid: false,
|
||||||
sites: [],
|
sites: [],
|
||||||
type: '',
|
type: '',
|
||||||
name: '',
|
name: '',
|
||||||
@@ -343,6 +344,15 @@ watchEffect(() => {
|
|||||||
label="洗版"
|
label="洗版"
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
<VCol
|
||||||
|
cols="12"
|
||||||
|
md="4"
|
||||||
|
>
|
||||||
|
<VSwitch
|
||||||
|
v-model="subscribeForm.search_imdbid"
|
||||||
|
label="使用 ImdbID 搜索"
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
</VForm>
|
</VForm>
|
||||||
</VCardText>
|
</VCardText>
|
||||||
|
|||||||
Reference in New Issue
Block a user