From 553817f0e21ea15938b5d1ae47db9b959ae34a02 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 12 Feb 2026 14:16:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=96=8B=E6=9C=88=E6=B4=BB=E5=8A=A8):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=89=8D=E5=8D=81=E7=9A=84=E5=A5=96=E5=8A=B1?= =?UTF-8?q?=E9=87=91=E5=B8=81=E8=AE=A1=E7=AE=97=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Activities/LuckyDollars/Season3/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/Activities/LuckyDollars/Season3/index.vue b/src/views/Activities/LuckyDollars/Season3/index.vue index 8516d22..3e21fe2 100644 --- a/src/views/Activities/LuckyDollars/Season3/index.vue +++ b/src/views/Activities/LuckyDollars/Season3/index.vue @@ -2044,11 +2044,11 @@ const formatLargeNumber = (num) => { if (absNum >= 1000000) { const millionValue = num / 1000000 - const roundedValue = Math.round(millionValue * 100) / 100 + const roundedValue = Math.floor(millionValue * 100) / 100 // 向下取整 return roundedValue.toFixed(2) + 'M' } else if (absNum >= 1000) { const thousandValue = num / 1000 - const roundedValue = Math.round(thousandValue * 100) / 100 + const roundedValue = Math.floor(thousandValue * 100) / 100 // 向下取整 return roundedValue.toFixed(2) + 'K' } else { return Math.floor(num).toString() @@ -2685,6 +2685,7 @@ const getDrawRecords = async () => { // 领取任务奖励 const receiveTaskReward = async (code) => { let data = { + activityId: '2006671533988298666', taskCode: code, } try {