59 lines
3.0 KiB
TypeScript
59 lines
3.0 KiB
TypeScript
// 搜索区域配置
|
|
export const withdrawCheckSearch = [
|
|
{
|
|
// 账户持有人姓名
|
|
prop: 'user_name',
|
|
label: '账户持有人',
|
|
type: 'input' as const,
|
|
placeholder: '请输入账户持有人',
|
|
width: '280px'
|
|
},
|
|
{
|
|
// 渠道
|
|
prop: 'channel_id',
|
|
label: '渠道',
|
|
type: 'select' as const,
|
|
placeholder: '请选择渠道',
|
|
width: '200px',
|
|
slot: true
|
|
},
|
|
// {
|
|
// // 时间范围选择
|
|
// prop: 'timeRange',
|
|
// label: '申请时间',
|
|
// type: 'date' as const,
|
|
// dateType: 'datetimerange' as const,
|
|
// rangeSeparator: '至',
|
|
// startPlaceholder: '开始时间',
|
|
// endPlaceholder: '结束时间',
|
|
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
// width: '380px'
|
|
// }
|
|
]
|
|
|
|
// 表格列配置
|
|
export const withdrawCheckTableColumns = [
|
|
{ prop: 'trade_id', label: '订单号', align: 'center' as const, width: 200 },
|
|
{ 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 },
|
|
{ prop: 'real_amount', label: '到账金额', align: 'center' as const, width: 120, isNumber: true },
|
|
{ prop: 'rate', label: '汇率', align: 'center' as const, width: 100 },
|
|
{ prop: 'channel_name', label: '渠道', align: 'center' as const, width: 140 },
|
|
// { prop: 'withdraw_service_fee', label: '服务费', align: 'center' as const, width: 100, isNumber: true },
|
|
// { 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 , width: 180},
|
|
{ prop: 'withdraw_address', label: '提现地址', align: 'center' as const, width: 180},
|
|
{ prop: 'beneficiary_bank_account', label: '银行账号', align: 'center' as const, width: 180},
|
|
{ prop: 'beneficiary_bank_name', label: '银行名称', align: 'center' as const, width: 180},
|
|
{ prop: 'beneficiary_enname', label: '收款人英文名字', align: 'center' as const, width: 180},
|
|
{ prop: 'fee', label: '通道费', align: 'center' as const, width: 180},
|
|
{ prop: 'withdraw_blance', label: '余额费用', align: 'center' as const, width: 180},
|
|
{ prop: 'beneficiary_name', 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' },
|
|
]
|
|
|