/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-11-20 15:43:35 */ /** * 已认领资金查询 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const tableList = [ { label: '银行交易流水号', prop: 'trxnBr' }, { label: '对公结算户账号', prop: 'acctNo' }, { label: '对公结算户户名', prop: 'acctName' }, { label: '转账付方银行账号', prop: 'rpyAcc' }, { label: '转账付方名称', prop: 'rpyNam' }, { label: '客户结算虚拟号', prop: 'psbnBr' }, { label: '绑定客户名称', prop: 'cltNam' }, { label: '收付金额', prop: 'crtAmt', isMoney: true }, { label: '认领金额', prop: 'transactionAmt', isMoney: true }, { label: '转账备注', prop: 'trxTxt' }, { label: '收款日期', prop: 'etyDat' }, { label: '项目名称', prop: 'projectName' }, { label: '认领日期', prop: 'transDate' } ] export default options => { // 接口地址: required const api = 'server/queryDealBankWaterInfoRsp' return new ApiModel({ api, tableList, request(params) { return this.post(params) } }) }