foreign-admin-ui/src/views/capital/withdrawCheck/options.ts

43 lines
2.1 KiB
TypeScript

// 搜索区域配置
export const withdrawCheckSearch = [
{
// 账户持有人姓名
prop: 'user_name',
label: '账户持有人',
type: 'input' as const,
placeholder: '请输入账户持有人',
width: '280px'
},
// {
// // 时间范围选择
// 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},
{ 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 },
{ prop: 'withdraw_address', label: '提现地址', align: 'center' as const},
{ prop: 'created_at', label: '申请时间', align: 'center' as const}
]