From abfc1f58711242d2740d82c27335f46ce8b2dc43 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Wed, 10 Dec 2025 20:54:26 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=BD=EF=B8=8F=20=E8=A7=92=E8=89=B2?= =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E5=8D=A1=E6=B1=A0=E4=B8=8D=E4=B8=A5=E6=A0=BC?= =?UTF-8?q?=E5=8C=BA=E5=88=86=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/userGacha/gro-data-view.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/userGacha/gro-data-view.vue b/src/components/userGacha/gro-data-view.vue index abca0eec..713185a6 100644 --- a/src/components/userGacha/gro-data-view.vue +++ b/src/components/userGacha/gro-data-view.vue @@ -234,7 +234,8 @@ function checkIsUp(item: TGApp.Sqlite.GachaRecords.TableGacha): boolean | undefi const itemTime = new Date(item.time).getTime(); const itemIdNum = Number(item.itemId); const poolsFind = AppGachaData.filter((pool) => { - if (pool.type.toLocaleString() !== item.gachaType) return false; + // 对于武器池,严格要求 gachaType 对应,角色池放宽以修复特殊情况下的异常 + if (pool.type.toLocaleString() !== item.gachaType && item.gachaType === "302") return false; const startTime = new Date(pool.from).getTime(); const endTime = new Date(pool.to).getTime(); return itemTime >= startTime && itemTime <= endTime;