39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
// 提现订单搜索项:按截图保留订单号、开始时间、结束时间。
|
|
export const search = [
|
|
{
|
|
prop: 'orderNo',
|
|
label: '订单号',
|
|
type: 'input' as const,
|
|
placeholder: '请输入流水号',
|
|
width: '210px',
|
|
},
|
|
{
|
|
prop: 'startTime',
|
|
label: '开始时间',
|
|
type: 'date' as const,
|
|
dateType: 'date' as const,
|
|
valueFormat: 'YYYY-MM-DD',
|
|
placeholder: '请选择开始时间',
|
|
width: '150px',
|
|
},
|
|
{
|
|
prop: 'endTime',
|
|
label: '结束时间',
|
|
type: 'date' as const,
|
|
dateType: 'date' as const,
|
|
valueFormat: 'YYYY-MM-DD',
|
|
placeholder: '请选择结束时间',
|
|
width: '150px',
|
|
},
|
|
]
|
|
|
|
// 提现订单表格列:对应截图中的列表表头。
|
|
export const tableColumns = [
|
|
{ prop: 'orderNo', label: '订单号', align: 'center' as const },
|
|
{ prop: 'currency', label: '提现币种', align: 'center' as const },
|
|
{ prop: 'amount', label: '金额', align: 'center' as const, isNumber: true },
|
|
{ prop: 'statusText', label: '状态', align: 'center' as const },
|
|
{ prop: 'withdrawTime', label: '提现时间', align: 'center' as const },
|
|
{ prop: 'withdrawAccount', label: '提现账号', align: 'center' as const },
|
|
]
|