/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-12-11 16:54:43 */ /** * 执行结果信息 */ import ApiModel from '@/utils/core/apiModel' // 表格信息 // 表单信息 const formList = [ { label: '还款执行日期', name: 'inputDate' }, { label: '还款执行结果', name: 'statusDesc' }, { label: '还款备注', name: 'memo' }, { label: '还款成功金额', name: 'finishAmount', isMoney: true } ] export default options => { // 接口地址: required const api = 'server/queryAcctBatchPaymentInfo' return new ApiModel({ api, formList, request(params) { return this.post(params) } }) }