/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-10-29 17:26:29 */ /** * 贷后审核列表 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const formList = [ { type: 'input', label: '还款流水号', value: '', name: 'rePaymentSerialno' }, { type: 'input', label: '客户名称', value: '', name: 'customerName' }, { type: 'select', label: '退款状态', value: [], name: 'refundPhaseArray', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'select', label: '当前流程阶段', value: [], name: 'flowPhaseArray', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'dateRange', label: '还款日期', value: [], name: 'actualPaymentDate', names: ['beginActualPaymentDate', 'endActualPaymentDate'] } ] // 表格信息 const tableList = [ { "label": "还款流水号", "prop": "rePaymentSerialno" }, { "label": "客户名称", "prop": "customerName" }, { "label": "当前流程阶段", "prop": "phaseName" }, { "label": "退款状态", "prop": "refundStatusDesc" }, { "label": "还款总金额", "prop": "actualPaymentAmt", "isMoney": true }, { "label": "还款本金", "prop": "actualPayPrinciPalAmt", "isMoney": true }, { "label": "还款利息", "prop": "actualPayInterestAmt", "isMoney": true }, { "label": "还款罚息", "prop": "actualPayInterestAmtA4", "isMoney": true }, { "label": "还款费用", "prop": "actualPayFeeAmt", "isMoney": true }, { "label": "还款日期", "prop": "actualPayDate" }, { "label": "退款失败原因", "prop": "refundFailRemark" }, { "label": "申请日期", "prop": "applyDate" }, { "label": "申请时间", "prop": "applyTime" }, { "label": "申请人", "prop": "inputUserName" }, { "label": "申请人直属机构", "prop": "inputOrgName" }, { "label": "当前处理人", "prop": "currentProcessor" }, { "label": "当前处理人直属机构", "prop": "currentProcessorOrgName" }, { prop: 'action', label: '操作管理', attrs: { // width: '260px', fixed: 'right' }, type: 'buttons' } ] export default options => { // 接口地址,required const api = 'server/queryRePaymentWashTransList' return new ApiModel({ api, formList, tableList, request(params) { return this.post(params) } }) }