From a001270bd29079145a167c5c0f88348e56b00302 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Fri, 14 Feb 2025 18:42:45 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20webui=20supports=20to=20sea?= =?UTF-8?q?rch=20plugin=20via=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/shared/ExtensionCard.vue | 4 +- dashboard/src/views/ExtensionPage.vue | 141 +++++++++++------- 2 files changed, 94 insertions(+), 51 deletions(-) diff --git a/dashboard/src/components/shared/ExtensionCard.vue b/dashboard/src/components/shared/ExtensionCard.vue index 04df9d96..be1fdfc8 100644 --- a/dashboard/src/components/shared/ExtensionCard.vue +++ b/dashboard/src/components/shared/ExtensionCard.vue @@ -4,6 +4,7 @@ const props = defineProps({ link: String, logo: String, has_update: Boolean, + activated: Boolean, }); const open = (link: string | undefined) => { @@ -16,8 +17,9 @@ const open = (link: string | undefined) => {
logo - {{ props.title }} + {{ props.title }} + mdi-cancel mdi-arrow-up-bold 帮助
diff --git a/dashboard/src/views/ExtensionPage.vue b/dashboard/src/views/ExtensionPage.vue index 6a538add..7b17fdc8 100644 --- a/dashboard/src/views/ExtensionPage.vue +++ b/dashboard/src/views/ExtensionPage.vue @@ -10,8 +10,8 @@ import { max } from 'date-fns';