1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| /*
| * @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)
| }
| })
| }
|
|