From bba02d2bf6bd862b1d059483da09066fa49590e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E9=A3=9E=E6=B4=8B?= <15778543+xufeiyang6017@user.noreply.gitee.com> Date: Fri, 9 Jan 2026 12:54:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=BB=98=E8=AE=A4=E7=AD=9B?= =?UTF-8?q?=E9=80=89=E4=B8=8B=E5=9C=A8=E5=94=AE=E5=95=86=E5=93=81=E5=87=BA?= =?UTF-8?q?=E7=8E=B0=E5=9C=A8=E5=94=AE=E7=A9=BA=E5=95=86=E5=93=81=E4=B9=8B?= =?UTF-8?q?=E5=90=8E=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/index/index.js b/pages/index/index.js index 302bfde..d606077 100644 --- a/pages/index/index.js +++ b/pages/index/index.js @@ -766,7 +766,7 @@ Page({ updatedGoods = newGoods } - const filteredGoods = this.applyFilters(updatedGoods, false) + const filteredGoods = this.applyFilters(updatedGoods, true) const groupedGoods = this.groupGoodsForStaggeredLayout(filteredGoods); this.setData({ @@ -861,7 +861,7 @@ Page({ const combinedGoods = [...existingGoods, ...uniqueNewGoods] // 对合并后的完整数据进行过滤和排序 - const filteredGoods = this.applyFilters(combinedGoods, false) + const filteredGoods = this.applyFilters(combinedGoods, true) const groupedGoods = this.groupGoodsForStaggeredLayout(filteredGoods); const currentCategory = this.data.selectedCategory === '全部' ? '' : this.data.selectedCategory;