This commit is contained in:
2026-06-12 17:40:45 +08:00
parent 085d284596
commit 01cc439726
4 changed files with 10 additions and 9 deletions

View File

@ -29,7 +29,7 @@
<el-button type="danger" text size="small" @click="handleReject(row)" v-auth="'user_reviewRechargeOrder'">
驳回
</el-button>
<span style="color: #dcdfe6; margin: 0 2px;">|</span>
<span style="color: #dcdfe6; margin: 0 2px;" v-auth="'user_reviewRechargeOrder'">|</span>
<el-button type="success" text size="small" @click="handleApprove(row)" v-auth="'user_reviewRechargeOrder'">
通过
</el-button>

View File

@ -46,6 +46,6 @@ export const rechangeCheckTableColumns = [
{ prop: 'realAmount', label: '实际金额', align: 'center' as const, width: 120, isNumber: true },
{ prop: 'rate', label: '汇率', align: 'center' as const, width: 100 },
{ prop: 'statusText', label: '状态', align: 'center' as const, width: 100 },
{ prop: 'rechangeTime', label: '充值时间', align: 'center' as const },
{ prop: 'rechangeTime', label: '充值时间', align: 'center' as const , width: 180 },
{ label: '操作', align: 'center' as const, width: 180, fixed: 'right' as const, slotName: 'action' },
]

View File

@ -15,11 +15,11 @@
>
<!-- 操作列驳回/通过按钮 -->
<template #action="{ row }">
<el-button type="success" text size="small" @click="handleApprove(row)" v-auth="'user_reviewWithdrawOrder'">
<el-button type="success" text size="small" @click="handleApprove(row)" v-auth="'user_reviewRechargeOrder'">
通过
</el-button>
<span style="color: #dcdfe6; margin: 0 2px;">|</span>
<el-button type="danger" text size="small" @click="handleReject(row)" v-auth="'user_reviewWithdrawOrder'">
<span style="color: #dcdfe6; margin: 0 2px;" v-auth="'user_reviewRechargeOrder'">|</span>
<el-button type="danger" text size="small" @click="handleReject(row)" v-auth="'user_reviewRechargeOrder'">
驳回
</el-button>
</template>
@ -340,3 +340,4 @@ const handlePaginationChange = (page: { currentPage: number; pageSize: number })
}
}
</style>

View File

@ -25,7 +25,7 @@ export const withdrawCheckSearch = [
// 表格列配置
export const withdrawCheckTableColumns = [
{ prop: 'trade_id', label: '订单号', align: 'center' as const, width: 200 },
{ prop: 'user_name', label: '账户持有人', align: 'center' as const},
{ prop: 'user_name', label: '账户持有人', align: 'center' as const, width: 180},
{ prop: 'withdraw_currency_symbol', label: '取款币种', align: 'center' as const, width: 100 },
{ prop: 'withdraw_amount', label: '取款金额', align: 'center' as const, width: 120, isNumber: true },
{ prop: 'real_currency_symbol', label: '到账币种', align: 'center' as const, width: 100 },
@ -36,8 +36,8 @@ export const withdrawCheckTableColumns = [
{ prop: 'withdraw_head_fee', label: '总部手续费', align: 'center' as const, width: 120, isNumber: true },
{ prop: 'withdraw_fee_handle', label: '代理手续费', align: 'center' as const, width: 120, isNumber: true },
{ prop: 'withdraw_point_diff', label: '点差', align: 'center' as const, width: 100, isNumber: true },
{ prop: 'withdraw_risk_fee', label: '风控费', align: 'center' as const, isNumber: true },
{ prop: 'withdraw_address', label: '提现地址', align: 'center' as const},
{ prop: 'created_at', label: '申请时间', align: 'center' as const},
{ prop: 'withdraw_risk_fee', label: '风控费', align: 'center' as const, isNumber: true , width: 180},
{ prop: 'withdraw_address', label: '提现地址', align: 'center' as const, width: 180},
{ prop: 'created_at', label: '申请时间', align: 'center' as const, width: 180},
{ label: '操作', align: 'center' as const, width: 140, fixed: 'right' as const, slotName: 'action' },
]