env.js 433 B

123456789101112131415161718192021222324252627282930
  1. "use strict";
  2. /**
  3. * 正式环境
  4. * @type {string}
  5. */
  6. // let baseUrl = `https://jje.xinyuekj.com.cn/prod-api`
  7. /**
  8. * 测试环境
  9. * @type {string}
  10. */
  11. // let baseUrl = `https://jje.xinyuekj.com.cn/test-api`
  12. /**
  13. * 庞架开发环境
  14. */
  15. let baseUrl = `http://10.147.20.142:8080`
  16. // 变量可自行添加修改
  17. export default { //存放变量的容器
  18. appid: '__UNI__1EEA945',
  19. baseUrl,
  20. uploadUrl: '/v1/file/put-file'
  21. }