/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: zheng * @Last Modified time: 2021-04-21 15:47:52 */ /** * 产品映射配置批量导入 */ import ApiModel from '@/utils/core/apiModel' export default options => { // 接口地址: required const api = 'server/loanOrgProductBatchImport' return new ApiModel({ api, request(body) { return this.upload(body) } }) }