Rap 原分销系统代码Web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7a3a7bc897638247e1ae019d01d30cbed7ebf424.svn-base 268B

преди 5 месеца
1234567891011
  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. }