/*
|
* @Author: vann 984797170@qq.com
|
* @Date: 2023-05-29 09:54:53
|
* @LastEditors: vann 984797170@qq.com
|
* @LastEditTime: 2023-05-29 14:15:36
|
* @FilePath: /pengding/rlc-mal-web/src/controller/downloadEexcelDisCountLoanList.js
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
*/
|
/**
|
* 贴息导出
|
*/
|
|
import ApiModel from '@/utils/core/apiModel'
|
|
export default options => {
|
// 接口地址: required
|
const api = 'server/downloadEexcelDisCountLoanList'
|
|
return new ApiModel({
|
api,
|
request(body) {
|
return this.exportFile(body)
|
}
|
})
|
}
|