/** * 转账认领撤销交易汇总信息 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const formList = [ { type: 'input', label: '入账交易号', value: '', name: 'serialNo', attrs: ['readonly'] }, { type: 'input', label: '入账状态', value: '', name: 'transStatus', attrs: ['readonly'] }, { type: 'input', label: '本金入账金额', value: '', isMoney: true, name: 'transAmt', attrs: ['readonly'] }, { type: 'input', label: '利息入账金额', value: '', isMoney: true, name: 'claimInterestAmt', attrs: ['readonly'] }, { type: 'input', label: '罚息入账金额', value: '', isMoney: true, name: 'principalPenalty', attrs: ['readonly'] }, { type: 'input', label: '手续费入账金额', value: '', isMoney: true, name: 'actualPoundage', attrs: ['readonly'] }, { type: 'input', label: '平台服务费入账金额', value: '', isMoney: true, name: 'actualServicefee', attrs: ['readonly'] }, { type: 'input', label: '担保费入账金额', value: '', isMoney: true, name: 'advanceGuarantee', attrs: ['readonly'] }, { type: 'input', label: '展期费入账金额', value: '', isMoney: true, name: 'payRenewalFee', attrs: ['readonly'] }, { type: 'input', label: '提前还款违约金入账金额', value: '', isMoney: true, name: 'actualPrepayPenaltyAmt', attrs: ['readonly'] }, { type: 'input', label: '还款计划变更费入账金额', value: '', isMoney: true, name: 'payinterestAmt', attrs: ['readonly'] } ] export default options => { // 接口地址,required const api = 'server/querySumTransAccoutInfo' return new ApiModel({ api, formList, request(params) { return this.post(params) } }) }