From 03a0e3c05777453faa5c61ac856fe15f57a13660 Mon Sep 17 00:00:00 2001 From: lihui Date: Sun, 24 Aug 2025 13:19:44 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=E6=9B=B4=E6=96=B0=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/audit/gold/rechargeAudit.vue | 4 ++-- src/views/consume/gold/coinConsumeDetail.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/audit/gold/rechargeAudit.vue b/src/views/audit/gold/rechargeAudit.vue index adc0d04..04e180f 100644 --- a/src/views/audit/gold/rechargeAudit.vue +++ b/src/views/audit/gold/rechargeAudit.vue @@ -40,7 +40,7 @@
- 总条数:{{ format3(stats.totalNum) }}条     + 充值新币:{{ format3(stats.permanentGolds) }}新币     总金币数:{{ format3((stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2)) }}金币     永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币     @@ -84,7 +84,7 @@ - + diff --git a/src/views/consume/gold/coinConsumeDetail.vue b/src/views/consume/gold/coinConsumeDetail.vue index a16072c..4e0426d 100644 --- a/src/views/consume/gold/coinConsumeDetail.vue +++ b/src/views/consume/gold/coinConsumeDetail.vue @@ -614,7 +614,7 @@ const getMarket = async function () {
消耗新币:{{ format3(Math.abs(permanentGolds)) }}新币     - 消耗总金币:{{ format3(Math.abs(permanentGolds+freeGolds+taskGolds)) }}金币     + 总金币数:{{ format3(Math.abs(permanentGolds+freeGolds+taskGolds)) }}     永久金币:{{ format3(Math.abs(permanentGolds)) }}     免费金币:{{ format3(Math.abs(freeGolds)) }}     任务金币:{{ format3(Math.abs(taskGolds)) }}