diff --git a/src/views/consume/gold/coinConsumeDetail.vue b/src/views/consume/gold/coinConsumeDetail.vue index 49b12c8..47f02c7 100644 --- a/src/views/consume/gold/coinConsumeDetail.vue +++ b/src/views/consume/gold/coinConsumeDetail.vue @@ -633,10 +633,10 @@ const getMarket = async function () {
- 消耗总新币:{{ format3(Math.abs(permanentGolds) / 100) }}新币     - 永久金币:{{ format3(Math.abs(permanentGolds) / 100) }}     - 免费金币:{{ format3(Math.abs(freeGolds) / 100) }}     - 任务金币:{{ format3(Math.abs(taskGolds) / 100) }} + 消耗总新币:{{ format3(Math.abs(permanentGolds) ) }}新币     + 永久金币:{{ format3(Math.abs(permanentGolds) ) }}     + 免费金币:{{ format3(Math.abs(freeGolds) ) }}     + 任务金币:{{ format3(Math.abs(taskGolds) ) }}
diff --git a/src/views/recharge/gold/coinRechargeDetail.vue b/src/views/recharge/gold/coinRechargeDetail.vue index a09172d..a742bf8 100644 --- a/src/views/recharge/gold/coinRechargeDetail.vue +++ b/src/views/recharge/gold/coinRechargeDetail.vue @@ -652,9 +652,9 @@ const getTagText = (state) => {
- 充值新币:{{ format3(permanentGolds / 100) }}新币     - 永久金币:{{ format3(permanentGolds / 100) }}金币     - 免费金币:{{ format3(freeGolds / 100) }}金币 + 充值新币:{{ format3(permanentGolds) }}新币     + 永久金币:{{ format3(permanentGolds) }}金币     + 免费金币:{{ format3(freeGolds ) }}金币
diff --git a/src/views/refund/gold/coinRefundDetail.vue b/src/views/refund/gold/coinRefundDetail.vue index 3c14ac8..b86b047 100644 --- a/src/views/refund/gold/coinRefundDetail.vue +++ b/src/views/refund/gold/coinRefundDetail.vue @@ -569,10 +569,10 @@ const getMarket = async function () {
- 退款金币总数:{{ format3(Math.abs(sumGolds) / 100) }}     - 永久金币:{{ format3(Math.abs(permanentGolds) / 100) }}     - 免费金币:{{ format3(Math.abs(freeGolds) / 100) }}     - 任务金币:{{ format3(Math.abs(taskGolds) / 100) }} + 退款金币总数:{{ format3(Math.abs(sumGolds)) }}     + 永久金币:{{ format3(Math.abs(permanentGolds) ) }}     + 免费金币:{{ format3(Math.abs(freeGolds) ) }}     + 任务金币:{{ format3(Math.abs(taskGolds) ) }}
diff --git a/src/views/usergold/gold/clientCountBalance.vue b/src/views/usergold/gold/clientCountBalance.vue index ae8f330..4117e9f 100644 --- a/src/views/usergold/gold/clientCountBalance.vue +++ b/src/views/usergold/gold/clientCountBalance.vue @@ -416,10 +416,10 @@ const format3 = (num) => {
- 金币总数:{{ format3(goldtotal/100 || 0) }}     - 永久金币:{{ format3(permanentGold/100 || 0) }}     - 免费金币:{{ format3(freeGold/100 || 0) }}     - 任务金币:{{ format3(taskGold /100 || 0) }} + 金币总数:{{ format3(goldtotal || 0) }}     + 永久金币:{{ format3(permanentGold || 0) }}     + 免费金币:{{ format3(freeGold || 0) }}     + 任务金币:{{ format3(taskGold || 0) }}
diff --git a/src/views/usergold/gold/clientCountDetail.vue b/src/views/usergold/gold/clientCountDetail.vue index a863b7f..2932b63 100644 --- a/src/views/usergold/gold/clientCountDetail.vue +++ b/src/views/usergold/gold/clientCountDetail.vue @@ -559,10 +559,10 @@ const format3 = (num) => {
- 金币总数:{{ format3(totalGoldTotal / 100 || 0) }}     - 永久金币:{{ format3(totalPermanentGold / 100 || 0) }}     - 免费金币:{{ format3(totalFreeGold / 100 || 0) }}     - 任务金币:{{ format3(totalTaskGold / 100 || 0) }} + 金币总数:{{ format3(totalGoldTotal || 0) }}     + 永久金币:{{ format3(totalPermanentGold || 0) }}     + 免费金币:{{ format3(totalFreeGold || 0) }}     + 任务金币:{{ format3(totalTaskGold || 0) }}
@@ -599,7 +599,7 @@ const format3 = (num) => { : scope.row.sumGold / 100 }} --> - {{ (scope.row.sumGold || 0) / }} + {{ (scope.row.sumGold || 0) }}