Newer
Older
Nanping_sponge_GCYPG / src / api / json / index.js
@liyingjing liyingjing on 25 Oct 258 bytes 工程预评估
import axios from 'axios'
console.log(import.meta.env)
const baseUrl = import.meta.env.VITE_APP_ENV === 'production' ? '/sponge/' : '/'
export const getUploadData = () => {
  return axios({
    url: `${baseUrl}json/upload-data.json`,
    method: "get"
  })
}