From 50e3d0facb64e997e43070b15b0222611fd8736e Mon Sep 17 00:00:00 2001 From: Hu Gang <18768366022@163.com> Date: Wed, 28 May 2025 17:11:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=B0=E5=A2=9E=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=91=98=E7=94=A8=E6=88=B7=E6=BF=80=E6=B4=BB=E6=8C=89=E9=92=AE?= =?UTF-8?q?=EF=BC=8C=E4=BF=AE=E6=94=B9app=E6=9F=A5=E8=AF=A2=E6=A3=80?= =?UTF-8?q?=E7=B4=A2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/api/index.vue | 34 ++++++++++++++++++---------------- src/views/app/index.vue | 2 +- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/src/views/api/index.vue b/src/views/api/index.vue index 564793c..ee6fbe9 100644 --- a/src/views/api/index.vue +++ b/src/views/api/index.vue @@ -103,7 +103,11 @@ >
-
+
-
+
+ + {{ + item.isActive + ? t('plugin_center.mcp.activate') + : t('plugin_center.mcp.deactivate') + }} +
- - - {{ - item.isActive - ? t('plugin_center.mcp.activate') - : t('plugin_center.mcp.deactivate') - }} -
diff --git a/src/views/app/index.vue b/src/views/app/index.vue index 0e4cf4c..cca8097 100644 --- a/src/views/app/index.vue +++ b/src/views/app/index.vue @@ -254,7 +254,7 @@ const handleParamsQueryAppList = (params?: any) => { payload[appType.value] = true; } handleQueryAppList({ - searchType: appSearchType.value, + appType: appSearchType.value !== 'all' ? appSearchType.value : undefined, keyword: appSearchValue.value, ...payload, ...params, -- Gitee