From 69ed55bdaff0582545bbc42ca76a61fe9745b70e Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 30 Apr 2026 18:35:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=AF=8F=E6=97=A5=E5=85=85=E5=80=BC?= =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E9=A1=B5=E9=9D=A2):=20=E5=AE=9D=E7=AE=B1?= =?UTF-8?q?=E6=BF=80=E6=B4=BB=E7=8A=B6=E6=80=81=E6=A0=B9=E6=8D=AE=E5=BD=93?= =?UTF-8?q?=E5=89=8D=E7=AD=89=E7=BA=A7=E6=9D=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Activities/DailyRecharge/index.vue | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/views/Activities/DailyRecharge/index.vue b/src/views/Activities/DailyRecharge/index.vue index 88108a9..02e15ed 100644 --- a/src/views/Activities/DailyRecharge/index.vue +++ b/src/views/Activities/DailyRecharge/index.vue @@ -790,15 +790,7 @@ const selectRewardChest = (level) => { const isChestConditionReached = (level) => { const chestLevel = Number(level) - if (chestLevel < currentLevel.value) { - return true - } - - if (chestLevel === currentLevel.value) { - return task1Completed.value && task2Completed.value - } - - return false + return chestLevel > 0 && chestLevel <= currentLevel.value } const getChestImageName = (chest) => {