/** * 下载客户实还报表 */ import ApiModel from '@/utils/core/apiModel'; export default options => { // 接口地址: required let api = '/paymentLog/downloadPaymentLogReport' return new ApiModel({ api, request(body) { return this.post(body); } }); };