From 80321e5c78b7de1aa51a975e15756303720275dc Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 30 Apr 2026 17:39:29 +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=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=95=B0=E6=8D=AE=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Activities/DailyRecharge/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/Activities/DailyRecharge/index.vue b/src/views/Activities/DailyRecharge/index.vue index 0b95df5..c9f90f6 100644 --- a/src/views/Activities/DailyRecharge/index.vue +++ b/src/views/Activities/DailyRecharge/index.vue @@ -630,6 +630,9 @@ const task1Completed = computed(() => { const currentTask1TargetCoins = computed(() => { return currentLevelInfo.value.spendCoinsTarget || 0 }) +const currentTask2TargetAmount = computed(() => { + return currentLevelInfo.value.rechargeTarget || 0 +}) const currentTask1RewardCoins = computed(() => { return currentLevelInfo.value.rewardCoins || taskInfo.value.task1TodayRewardCoins || 0 }) @@ -655,7 +658,7 @@ const task1ProgressText = computed(() => { return isolateLtrText(`${displayedSpendCoins.value}/${currentTask1TargetCoins.value}`) }) const task2ProgressText = computed(() => { - return isolateLtrText(`$${displayedRechargeAmount.value}/$${taskInfo.value.task2TargetAmount}`) + return isolateLtrText(`$${displayedRechargeAmount.value}/$${currentTask2TargetAmount.value}`) }) const selectedRewardTop = computed(() => { return activityRewards.value[selectedRewardLevel.value - 1] || {}