foreign-admin-ui/src/views/funding/transferDetail/options.ts

53 lines
1.3 KiB
TypeScript

/**
* @description: 搜索配置
*/
export const search = [
//存款账户
{
label: '转账账户',
prop: 'transferAccount',
type: 'input' as const,
placeholder: '请输入转账账户'
},
//级别
{
label: '级别',
prop: 'level',
type: 'select' as const,
placeholder: '请选择级别',
},
//全部
{
label: '级别',
prop: 'level',
type: 'select' as const,
placeholder: '全部',
}
]
// 表格配置
export const tableColumns = [
//序号
{ label: '序号', prop: 'index' },
//转出账户
{ label: '转出账户', prop: 'transferAccount' },
//所属代理
{ label: '所属代理', prop: 'agentName' },
//转入账号
{ label: '转入账号', prop: 'transferAccountName' },
//转账类型
{ label: '转账类型', prop: 'transferType' },
//转账金额
{ label: '转账金额', prop: 'transferAmount' },
//转账币种
{ label: '转账币种', prop: 'transferCurrency' },
// 到账金额
{ label: '到账金额', prop: 'arrivalAmount' },
//到账币种
{ label: '到账币种', prop: 'arrivalCurrency' },
//类型
{ label: '类型', prop: 'type' },
//状态
{ label: '状态', slotName: 'status' },
]