/** * 中航信托线下转账-认领明细列表查询 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const formList = [ { type: 'input', label: '转账账户', value: '', name: 'rpyAcc' }, { type: 'input', label: '转账账户户名', value: '', name: 'rpyNam' }, { type: 'dateRange', label: '转账到账日期', value: '', name: 'rpyAccountDate', names: ['rpyAccountDateBegin', 'rpyAccountDateEnd'] }, { type: 'input', label: '认领贷款申请编号', value: '', name: 'applySerialNo' } ] // 表格信息 const tableList = [ { label: '银行转账流水', prop: 'trxnbr' }, { label: '转账账户', prop: 'rpyAcc' }, { label: '转账账户户名', prop: 'rpyNam' }, { label: '转账到账日期', prop: 'rpyAccountDate' }, { label: '转账金额', prop: 'crtAmt', isMoney: true }, { label: '认领金额', prop: 'transactionAmt', isMoney: true }, { label: '认领贷款申请编号', prop: 'applyserialNo' }, { label: '认领客户名称', prop: 'customerName' }, { label: '认领日期', prop: 'inputTime' }, { label: '认领人', prop: 'inputUserId' } ] export default options => { // 接口地址,required const api = 'server/queryZhTrustClaimList' return new ApiModel({ api, formList, tableList, request(params) { return this.post(params) } }) }