Browse Source

fix 退款金币总数 充值金额

zhangyong/feature-20250815160302-金币优化
lihui 2 months ago
parent
commit
a26fb62511
  1. 2
      src/views/audit/gold/rechargeAudit.vue
  2. 3
      src/views/audit/gold/refundAudit.vue

2
src/views/audit/gold/rechargeAudit.vue

@ -60,7 +60,7 @@
<el-table-column prop="activity" label="活动名称" width="100px" show-overflow-tooltip/>
<el-table-column prop="rateName" label="货币名称" width="110px"/>
<el-table-column prop="money" label="充值金额" sortable="custom" width="110px">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>
<template #default="scope">{{ scope.row.money / 100 }}</template>
</el-table-column>
<el-table-column prop="permanentGold" label="永久金币" width="110px" sortable="custom">
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template>

3
src/views/audit/gold/refundAudit.vue

@ -64,7 +64,7 @@
</template>
</el-table-column>
<el-table-column prop="goodsName" label="退款商品" width="120" show-overflow-tooltip/>
<el-table-column prop="sumGold" label="退款金额" width="120" sortable="custom">
<el-table-column prop="sumGold" label="退款金币总数" width="160" sortable="custom">
<template #default="{ row }">
{{ row.sumGold / 100 }}
</template>
@ -122,6 +122,7 @@
</el-popconfirm>
<el-button :disabled="clicked || cancelClicked" type="primary" text @click="showRejectDialog(scope.row)">
驳回
驳回
</el-button>
</div>
</template>

Loading…
Cancel
Save