账户退款明细

This commit is contained in:
zzyuan 2025-06-10 13:06:26 +08:00
parent 5e10fcecf0
commit b1713714ad
1 changed files with 4 additions and 4 deletions

View File

@ -51,17 +51,17 @@
<el-table-column label="用户编号" align="center" prop="userId" :show-overflow-tooltip="true"/>
<el-table-column label="用户姓名" align="center" prop="nickName" :show-overflow-tooltip="true"/>
<el-table-column label="订单ID" align="center" prop="orderId" :show-overflow-tooltip="true"/>
<el-table-column label="交易金额" align="center" prop="actualAmount" :show-overflow-tooltip="true">
<el-table-column label="交易金额" align="center" prop="realAmount" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ (scope.row.actualAmount/100).toFixed(2) }}</span>
<span>{{ (scope.row.realAmount/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="交易时间" align="center" prop="payTime" :show-overflow-tooltip="true"/>
<el-table-column label="支付类型" align="center" prop="payTypeName" :show-overflow-tooltip="true"/>
<!-- <el-table-column label="退款订单号" align="center" prop="" :show-overflow-tooltip="true"/> -->
<el-table-column label="退款金额" align="center" prop="realAmount" :show-overflow-tooltip="true">
<el-table-column label="退款金额" align="center" prop="actualAmount" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ (scope.row.realAmount/100).toFixed(2) }}</span>
<span>{{ (scope.row.actualAmount/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="退款类型" align="center" prop="tradeTypeName" :show-overflow-tooltip="true"/>