From 661f209703d7e77146165aa1fe19779b61f62a38 Mon Sep 17 00:00:00 2001 From: lihui Date: Tue, 12 Aug 2025 13:07:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(usergold):=20=E4=BF=AE=E5=A4=8D=E9=87=91?= =?UTF-8?q?=E5=B8=81=E6=95=B0=E9=87=8F=E6=98=BE=E7=A4=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/usergold/gold/clientCountBalance.vue | 8 ++++---- src/views/usergold/gold/clientCountDetail.vue | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/views/usergold/gold/clientCountBalance.vue b/src/views/usergold/gold/clientCountBalance.vue index 72d2aef..c76e86f 100644 --- a/src/views/usergold/gold/clientCountBalance.vue +++ b/src/views/usergold/gold/clientCountBalance.vue @@ -403,10 +403,10 @@ const format3 = (num) => {
- 金币总数:{{ format3(goldtotal || 0) / 100}}     - 永久金币:{{ format3(permanentGold || 0)/ 100 }}     - 免费金币:{{ format3(freeGold || 0)/ 100 }}     - 任务金币:{{ format3(taskGold || 0) / 100}} + 金币总数:{{ format3(goldtotal/100 || 0) }}     + 永久金币:{{ format3(permanentGold/100 || 0) }}     + 免费金币:{{ format3(freeGold/100 || 0) }}     + 任务金币:{{ format3(taskGold /100 || 0) }}
diff --git a/src/views/usergold/gold/clientCountDetail.vue b/src/views/usergold/gold/clientCountDetail.vue index 8a69e92..b2286be 100644 --- a/src/views/usergold/gold/clientCountDetail.vue +++ b/src/views/usergold/gold/clientCountDetail.vue @@ -554,10 +554,10 @@ const format3 = (num) => {
- 金币总数:{{ format3(totalGoldTotal || 0)/ 100 }}     - 永久金币:{{ format3(totalPermanentGold || 0)/ 100 }}     - 免费金币:{{ format3(totalFreeGold || 0)/ 100 }}     - 任务金币:{{ format3(totalTaskGold || 0)/ 100 }} + 金币总数:{{ format3(totalGoldTotal/100 || 0) }}     + 永久金币:{{ format3(totalPermanentGold/100 || 0) }}     + 免费金币:{{ format3(totalFreeGold/100 || 0) }}     + 任务金币:{{ format3(totalTaskGold /100|| 0) }}