diff --git a/src/views/capital/rechangeCheck/index.vue b/src/views/capital/rechangeCheck/index.vue index f02f9c4..6baf5c7 100644 --- a/src/views/capital/rechangeCheck/index.vue +++ b/src/views/capital/rechangeCheck/index.vue @@ -1,7 +1,327 @@ - - - 存款审核 + + + + 驳回 + 通过 + 导出 + + + + + + + + + {{ (currentPage - 1) * pageSize + scope.$index + 1 }} + + + + + + + + + - + + + diff --git a/src/views/capital/rechangeCheck/options.ts b/src/views/capital/rechangeCheck/options.ts new file mode 100644 index 0000000..9467d36 --- /dev/null +++ b/src/views/capital/rechangeCheck/options.ts @@ -0,0 +1,40 @@ +export const rechangeCheckSearch = [ + { + prop: 'account', + label: '存款账户', + type: 'input' as const, + placeholder: '请输入存款账户', + width: '220px' + }, + { + prop: 'userType', + label: '客户类型', + type: 'select' as const, + placeholder: '请选择客户类型', + width: '180px', + options: [ + { label: '客户', value: 1 }, + { label: '代理', value: 2 } + ] + } +] + + + +export const rechangeCheckTableColumns = [ + { prop: 'account', label: '账户', align: 'center' as const, width: 140 }, + { prop: 'agentName', label: '所属代理', align: 'center' as const, width: 140 }, + { prop: 'serialNo', label: '流水编号', align: 'center' as const, width: 180 }, + { prop: 'walletAddress', label: '钱包地址', align: 'center' as const, width: 220 }, + { prop: 'walletType', label: '钱包类型', align: 'center' as const, width: 120 }, + { prop: 'holderName', label: '账户持有人姓名', align: 'center' as const, width: 160 }, + { prop: 'bankName', label: '银行名称', align: 'center' as const, width: 160 }, + { prop: 'bankCode', label: '银行识别代码', align: 'center' as const, width: 160 }, + { prop: 'bankAddress', label: '银行地址', align: 'center' as const, width: 200 }, + { prop: 'depositAmount', label: '存款金额', align: 'center' as const, width: 120 }, + { prop: 'depositCurrency', label: '存款币种', align: 'center' as const, width: 120 }, + { prop: 'arrivalAmount', label: '到账金额', align: 'center' as const, width: 120 }, + { prop: 'arrivalCurrency', label: '到账币种', align: 'center' as const, width: 120 }, + { prop: 'exchangeRate', label: '汇率', align: 'center' as const, width: 100 }, + { prop: 'type', label: '类型', align: 'center' as const, width: 100 } +]