Blame view

merchant-web-master/src/api/commodityLease.js 240 Bytes
65478d1d   杨鑫   '最新'
1
2
3
4
5
6
7
8
9
10
11
12
13
  import request from '@/utils/request'
  // 上传合同
  
  export function miniioupload(data) {
    return request({
      url: '/miniio/upload',
      method: 'post',
      data,
      headers: {
        'Content-Type': 'multipart/form-data'
      }
    })
  }