/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-12-10 15:03:45 */ /** * 还款冲账交易详情 */ import ApiModel from '@/utils/core/apiModel' // 表格信息 const formList = [ { type: 'input', attrs: ['readonly'], label: '还款流水号', name: 'rePaymentSerialno' }, { type: 'input', attrs: ['readonly'], label: '客户名称', name: 'customerName' }, { type: 'input', attrs: ['readonly'], label: '还款日期', name: 'actualPayDate' }, { type: 'input', attrs: ['readonly'], label: '还款总金额', name: 'actualPaymentAmt', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款本金', name: 'actualPayPrinciPalAmt', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款利息', name: 'actualPayInterestAmt', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款罚息', name: 'actualPayInterestAmtA4', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款手续费', name: 'actualPayInterestAmtA1', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款担保费', name: 'actualPayInterestAmtA3', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款平台服务费', name: 'actualPayInterestAmtA2', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款提前还款违约金', name: 'actualPayInterestAmtA5', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款展期费', name: 'actualPayInterestAmtA6', isMoney: true }, { type: 'input', attrs: ['readonly'], label: '还款还款计划变更费', name: 'actualPayInterestAmtA8', isMoney: true } ] export default options => { // 接口地址: required const api = 'server/queryRePaymentWashTransInfo' return new ApiModel({ api, formList, request(params) { return this.post(params) } }) }