modeConfig.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // 本地联调开关
  2. const localTest = false;
  3. // 服务器地址
  4. let baseURL = "/current/" // 正式环境
  5. // websocket 服务器地址
  6. let websocketUrl = null;
  7. // 3D 地球瓦片路径
  8. let tilesUrl = null;
  9. // 3D 地球最大支持放大到多少级
  10. const tilesMaxLevel = 18;
  11. // 适配器地址
  12. // const adapterUrl = "http://10.155.32.4:8011/";
  13. // 切换模块时是否提示当前模块名称(用于对内介绍项目时便捷显示模块名称)
  14. const showModuleName = 0;
  15. const reportBaseUrl = "http://10.127.7.241:8083";
  16. // const reportBaseUrl = "http://172.16.12.101:8083";
  17. // if (localTest) {
  18. // baseURL = "http://192.168.10.8:9002/" // 联机调试
  19. // } else {
  20. // baseURL = "http://10.155.32.14:9002/" // 正式环境
  21. // }
  22. websocketUrl = (baseURL.replace(/http:\/\/|https:\/\//g, "")) + "gyee-websocket";
  23. window.__MODE__ = {
  24. baseURL,
  25. websocketUrl,
  26. // adapterUrl,
  27. tilesUrl,
  28. tilesMaxLevel,
  29. showModuleName,
  30. reportBaseUrl
  31. };
  32. export default {
  33. baseURL,
  34. websocketUrl,
  35. // adapterUrl,
  36. tilesUrl,
  37. tilesMaxLevel,
  38. showModuleName,
  39. reportBaseUrl
  40. }