|
|
@@ -28,13 +28,13 @@
|
|
|
<el-table v-loading="listLoading" :data="tableData.data" style="width: 100%" size="small" height="500">
|
|
|
<el-table-column prop="transactionId" label="交易ID" min-width="220" :show-overflow-tooltip="true" />
|
|
|
<el-table-column prop="account" label="用户账号" min-width="120" />
|
|
|
- <el-table-column label="提现金额(sL)" min-width="80">
|
|
|
+ <el-table-column label="提现金额" min-width="80">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ Number(scope.row.amount) + Number(scope.row.handlingFeeSl) }}
|
|
|
+ {{ Number(scope.row.amount) + Number(scope.row.handlingFee) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="amount" label="到账金额(sL)" min-width="80" />
|
|
|
- <el-table-column prop="handlingFeeSl" label="手续费(sL)" min-width="100" />
|
|
|
+ <el-table-column prop="amount" label="到账金额" min-width="80" />
|
|
|
+ <el-table-column prop="handlingFee" label="手续费" min-width="100" />
|
|
|
<el-table-column prop="address" label="提现地址" min-width="200" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="状态" min-width="80">
|
|
|
<template slot-scope="scope">
|