From 257789671c18032b84724f881703b3058f76ba68 Mon Sep 17 00:00:00 2001 From: cc500 <2014434568@qq.com> Date: Tue, 20 May 2025 16:37:34 +0800 Subject: [PATCH] =?UTF-8?q?bugFix:=20=E8=AF=AD=E4=B9=89=E6=8E=A5=E5=8F=A3t?= =?UTF-8?q?ab=E5=88=87=E6=8D=A2=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/api/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/api/index.vue b/src/views/api/index.vue index 17997aae..67283135 100644 --- a/src/views/api/index.vue +++ b/src/views/api/index.vue @@ -420,7 +420,6 @@ const queryList = async (type: 'semantic_interface' | 'mcp') => { })); } } - loading.value = false; }; @@ -441,9 +440,12 @@ const handleFavorite = (e, item) => { }; const handleSearchApiList = (type: 'my' | 'createdByMe' | 'favorited') => { + console.log(type,'type'); if (type === 'my') { + apiType.value = 'my'; queryList(pluginType.value); } else { + apiType.value = type; currentPage.value = 1; currentPageSize.value = 16; queryList(pluginType.value); -- Gitee