From b84b0f229f2635926e19890f73253502a4abe2d3 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Fri, 28 Feb 2025 18:13:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E4=B8=8B=E6=8B=89=E6=A1=86=EF=BC=8C=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E5=B7=A5=E4=BD=9C=E6=B5=81=E6=93=8D=E4=BD=9C=E5=AF=B9?= =?UTF-8?q?=E8=AF=9D=E6=A1=86=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dialog/WorkflowActionsDialog.vue | 2 +- .../workflow/FetchDownloadsAction.vue | 1 + .../workflow/FetchTorrentsAction.vue | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/components/dialog/WorkflowActionsDialog.vue b/src/components/dialog/WorkflowActionsDialog.vue index 46ef9a4a..38a6e09e 100644 --- a/src/components/dialog/WorkflowActionsDialog.vue +++ b/src/components/dialog/WorkflowActionsDialog.vue @@ -101,6 +101,7 @@ onMounted(() => { +
{ .dnd-flow aside .description { margin-bottom: 10px; } - .dnd-flow .vue-flow-wrapper { flex-grow: 1; height: 100%; diff --git a/src/components/workflow/FetchDownloadsAction.vue b/src/components/workflow/FetchDownloadsAction.vue index 06d224c7..b5fc4323 100644 --- a/src/components/workflow/FetchDownloadsAction.vue +++ b/src/components/workflow/FetchDownloadsAction.vue @@ -24,6 +24,7 @@ defineProps({ 获取下载任务 获取下载任务,更新任务状态 + diff --git a/src/components/workflow/FetchTorrentsAction.vue b/src/components/workflow/FetchTorrentsAction.vue index a11e8133..e9025add 100644 --- a/src/components/workflow/FetchTorrentsAction.vue +++ b/src/components/workflow/FetchTorrentsAction.vue @@ -26,6 +26,18 @@ const typeOptions = ref([ }, ]) +// 搜索方式下拉框 +const searchOptions = ref([ + { + title: '名称', + value: 'keyword', + }, + { + title: '媒体列表', + value: 'media', + }, +]) + // 站点数据列表 const siteList = ref([]) @@ -70,6 +82,11 @@ onMounted(() => { + + + + + @@ -82,6 +99,8 @@ onMounted(() => { + +