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

24 lines
680 B
TypeScript

// 取款页面表格列配置
export const tableColumns = [
// 序号
{ label: '序号', type: 'index', width: 60, align: 'center' as const },
// 渠道名称
{ label: '渠道名称', prop: 'name' },
// 渠道费用
{ label: '渠道费用', prop: 'channel_fee' },
{
label: '出金货币',
prop: 'currency.symbol',
type: 'select',
placeholder: '请选择入金货币',
},
// 接口地址
{ label: '接口地址', prop: 'api_url' },
// 接口appid
{ label: '接口appid', prop: 'api_appid' },
// 状态
{ label: '状态', prop: 'statusStr' },
// 操作
{ label: '操作', prop: 'action', width: 100, slotName: 'action' as const },
]