From b6eb5235222b7716e6409899ce80404637aa4626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9B=AE=E6=A3=83?= Date: Tue, 16 Jan 2024 16:28:05 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20=E6=9D=A5=E6=BA=90?= =?UTF-8?q?=E4=B9=9F=E7=AE=97=E8=BF=9B=E6=90=9C=E7=B4=A2=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E9=87=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/WIKI/Namecard.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/WIKI/Namecard.vue b/src/pages/WIKI/Namecard.vue index de6d221d..c3aa71bc 100644 --- a/src/pages/WIKI/Namecard.vue +++ b/src/pages/WIKI/Namecard.vue @@ -112,7 +112,11 @@ function searchNamecard() { } } else { const searchResult = AppNameCardsData.filter((item) => { - return item.name.includes(search.value) || item.desc.includes(search.value); + return ( + item.name.includes(search.value) || + item.desc.includes(search.value) || + item.source.includes(search.value) + ); }); sortData(searchResult); }