Browse Source

金币充值明细

milestone-20250815-金币优化
lihui 4 weeks ago
parent
commit
567a349569
  1. 7
      src/views/recharge/gold/coinRechargeDetail.vue

7
src/views/recharge/gold/coinRechargeDetail.vue

@ -656,6 +656,13 @@ const getTagText = (state) => {
<el-table-column prop="payPlatform" label="充值平台" width="110px" /> <el-table-column prop="payPlatform" label="充值平台" width="110px" />
<el-table-column prop="payModel" label="支付方式" width="100px" /> <el-table-column prop="payModel" label="支付方式" width="100px" />
<el-table-column prop="remark" label="备注" width="150px" show-overflow-tooltip /> <el-table-column prop="remark" label="备注" width="150px" show-overflow-tooltip />
<el-table-column prop="isRefund" label="订单状态" width="200px" show-overflow-tooltip>
<template #default="scope">
<span v-if="scope.row.isRefund == 0">正常</span>
<span v-else-if="scope.row.isRefund == 1">已退款</span>
<span v-else>未知状态</span>
</template>
</el-table-column>
<el-table-column prop="adminName" label="提交人" width="100px" /> <el-table-column prop="adminName" label="提交人" width="100px" />
<el-table-column prop="auditTime" sortable label="充值时间" width="200px"> <el-table-column prop="auditTime" sortable label="充值时间" width="200px">
<template #default="scope"> <template #default="scope">

Loading…
Cancel
Save