diff --git a/src/components/dialog/SubscribeEditDialog.vue b/src/components/dialog/SubscribeEditDialog.vue index 895c6149..c585c486 100644 --- a/src/components/dialog/SubscribeEditDialog.vue +++ b/src/components/dialog/SubscribeEditDialog.vue @@ -50,6 +50,7 @@ const subscribeForm = ref({ sites: [], best_version: undefined, current_priority: 0, + downloader: '', date: '', show_edit_dialog: false, }) @@ -65,7 +66,7 @@ async function loadDownloaderSetting() { const result: { [key: string]: any } = await api.get('system/setting/Downloaders') const downloaders = result.data?.value ?? [] downloaderOptions.value = [ - { title: '默认', value: null }, + { title: '默认', value: '' }, ...downloaders.map((item: { name: any }) => ({ title: item.name, value: item.name,