Browse Source

Merge branch 'refs/heads/lihui/feature-20250623144029-金币前端lihui' into milestone-20250623-金币前端

lihuilin/feature-20250623164044-金币前端
lihui 10 hours ago
parent
commit
4bcaf3fa7c
  1. 8
      src/views/audit/rechargeAudit.vue

8
src/views/audit/rechargeAudit.vue

@ -66,7 +66,7 @@
退款总金币数{{ (stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2) }}金币    
永久金币{{ stats.permanentGolds.toFixed(2) }}金币    
免费金币{{ stats.freeGolds.toFixed(2) }}金币    
任务金币{{ stats.taskGolds.toFixed(2) }}金币
<!-- 任务金币{{ stats.taskGolds.toFixed(2) }}金币-->
</div>
</el-tabs>
@ -83,8 +83,8 @@
<el-table-column fixed="left" prop="jwcode" label="精网号" width="110px" />
<el-table-column prop="market" label="所属地区" width="100px" />
<el-table-column prop="activity" label="活动名称" width="100px" show-overflow-tooltip />
<el-table-column prop="sumGold" label="充值金额" sortable="custom" width="110px">
<template #default="scope">{{ scope.row.sumGold / 100 }}</template>
<el-table-column prop="permanentGold" label="充值金额" sortable="custom" width="110px">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
</el-table-column>
<el-table-column prop="permanentGold" label="永久金币" width="110px" sortable="custom">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
@ -117,7 +117,7 @@
{{ moment(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}
</template>
</el-table-column>
<el-table-column v-if="activeName !== 'wait'" prop="auditTime" sortable="custom" label="审核时间" width="200px">
<el-table-column v-if="activeName !== 'wait'" prop="auditTime" label="审核时间" width="200px">
<template #default="scope">
{{ moment(scope.row.auditTime).format('YYYY-MM-DD HH:mm:ss') }}
</template>

Loading…
Cancel
Save