星火管控前端
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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