fix 订阅时编辑规则移到默认订阅规则页面

This commit is contained in:
thsrite
2024-04-20 18:48:02 +08:00
parent 555a00b731
commit 3d551ac45b
3 changed files with 35 additions and 30 deletions

View File

@@ -43,7 +43,8 @@ const subscribeForm = ref<Subscribe>({
username: '',
current_priority: 0,
save_path: '',
date: ''
date: '',
show_edit_dialog: false
})
// 提示框
@@ -413,6 +414,16 @@ onMounted(() => {
hint="开启后将使用 ImdbID 搜索资源,搜索结果更精确,但不是所有站点都支持"
/>
</VCol>
<VCol
cols="12"
md="4"
>
<VSwitch
v-model="subscribeForm.show_edit_dialog"
label="订阅时编辑更多规则"
hint="开启后将在添加订阅后弹出编辑订阅的对话框,方便用户编辑订阅规则"
/>
</VCol>
</VRow>
</VForm>
</VCardText>