upload.js 219 B

1234567891011
  1. // 上传地址
  2. let UPLOAD_URL = "";
  3. if (process.env.NODE_ENV === "development") {
  4. UPLOAD_URL = "http://127.0.0.1:8000/api";
  5. } else {
  6. UPLOAD_URL = "http://cpaoa.xgccpm.com/api";
  7. }
  8. export default {
  9. UPLOAD_URL,
  10. };