/** * 中航信托线下转账还款通知-银行流水列表查询 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const tableList = [ { label: '银行转账流水', prop: 'trxnbr', attrs: { width: 'auto' } }, { label: '转账账户', prop: 'rpyAcc', attrs: { width: 'auto' } }, { label: '账户户名', prop: 'rpyNam', attrs: { width: 'auto' } }, { label: '转账到账日期', prop: 'rpyAccountDate', attrs: { width: 'auto' } }, { label: '转账金额', prop: 'crtAmt', attrs: { width: 'auto' }, isMoney: true }, { label: '认领金额', prop: 'transactionAmt', attrs: { width: 'auto' }, isMoney: true }, { prop: 'action', label: '操作管理', attrs: { // width: '260px', fixed: 'right' }, type: 'buttons' } ] export default options => { // 接口地址,required const api = 'server/queryZhBankMessageList' return new ApiModel({ api, tableList, request(params) { return this.post(params) } }) }