From f0189c6f2c046f41135de50acaf0b261db1ab22c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Mon, 27 Oct 2025 16:09:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=88=91=E7=9A=84=E5=B0=8F?= =?UTF-8?q?=E5=8C=BA=E9=A1=B5=E9=9D=A2=E4=BB=A3=E7=A0=81,=E4=BD=BF?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E4=B8=8D=E4=BC=9A=E5=87=BA=E7=8E=B0?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/community/index/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/community/index/index.vue b/packages/community/index/index.vue index a6cecab8..84876c5c 100644 --- a/packages/community/index/index.vue +++ b/packages/community/index/index.vue @@ -735,7 +735,7 @@ export default { } // 根据选中的分类ID筛选数据 - this.defaultInfoList = this.originalDefaultInfoList.filter(info => info.id === item.id); + this.defaultInfoList = this.originalDefaultInfoList.filter(info => info?.id === item?.id); return; }