Rap 原分销系统代码Web
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
268B

  1. import axios from 'axios'
  2. import { getToken } from '@/utils/auth'
  3. export function upload(api, file) {
  4. var data = new FormData()
  5. data.append('file', file)
  6. const config = {
  7. headers: { 'Authorization': getToken() }
  8. }
  9. return axios.post(api, data, config)
  10. }