1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import serviceLbcloud from './serviceLbcloud'
|
| // 文件上传api
| export class UploadFileApi {
| fileUpload = (params, config = {}) => {
| const axiosConfig = {
| url: '/lbcloud-file/file/batch/upload/file',
| method: 'post',
| data: params,
| onUploadProgress: config.onUploadProgress
| }
| return serviceLbcloud(axiosConfig)
| }
|
| removeFile= (params) => {
| return serviceLbcloud.post(`/lbcloud-file/file/remove/file?key=${params.key}`)
| }
| }
| export default new UploadFileApi()
|
|