星火管控前端
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

config.js 1.1KB

123456789101112131415161718192021222324252627282930
  1. window.isTest = true; //测试环境true 正式环境false
  2. window._config = window.isTest
  3. ? {
  4. // 测试环境
  5. baseUrl: "https://mcapitest.xhkjedu.com/",
  6. baseImageUrl: "https://mcapitest.xhkjedu.com/",
  7. showImageUrl: "https://mcapitest.xhkjedu.com/",
  8. axiosApiTimeout: 60, // 接口超时时间 单位秒
  9. axiosFileTimeout: 120, // 上传文件超时时间 单位秒
  10. // 开发者
  11. developer: "河南星火燎原软件科技有限公司",
  12. // 联系我们
  13. contactUs: "https://www.xhkjedu.com/",
  14. versionname: "测试 v1.0.0",
  15. secret: false
  16. }
  17. : {
  18. // 正式环境
  19. baseUrl: "https://mcapi.xhkjedu.com/",
  20. baseImageUrl: "https://mcapi.xhkjedu.com/",
  21. showImageUrl: "https://mcapi.xhkjedu.com/",
  22. axiosApiTimeout: 20, // 接口超时时间 单位秒
  23. axiosFileTimeout: 30, // 上传文件超时时间 单位秒
  24. // 开发者
  25. developer: "河南星火燎原软件科技有限公司",
  26. // 联系我们
  27. contactUs: "https://www.xhkjedu.com/",
  28. versionname: "正式 v1.0.0",
  29. secret: true
  30. };