Browse Source

refactor(usergold): 移除金币数量显示的绝对值处理移除了客户端计数详情页面中对金币数量的 Math.abs()处理,保留原始逻辑显示。修改涉及以下内容:

- 金币总数
- 永久金币
- 免费金币
- 任务金币
zhangrenyuan/feature-20250623164058-金币前端
lihui 4 weeks ago
parent
commit
46873632f7
  1. 8
      src/views/usergold/clientCountDetail.vue

8
src/views/usergold/clientCountDetail.vue

@ -394,10 +394,10 @@ onMounted(async function () {
<el-col>
<el-card>
<div>
金币总数{{ Math.abs(totalGoldTotal) / 100 }}
永久金币{{ Math.abs(totalPermanentGold) / 100 }}
免费金币{{ Math.abs(totalFreeGold) / 100 }}
任务金币{{ Math.abs(totalTaskGold) / 100 }}
金币总数{{ (totalGoldTotal) / 100 }}
永久金币{{ (totalPermanentGold) / 100 }}
免费金币{{ (totalFreeGold) / 100 }}
任务金币{{(totalTaskGold) / 100 }}
</div>
<div style="height: 584px; overflow-y: auto">
<el-table :data="tableData" style="width: 100%" @sort-change="handleSortChange" height="584px">

Loading…
Cancel
Save