modeConfig.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 skipLogin = false;
  13. // 适配器地址
  14. // const adapterUrl = "http://10.155.32.4:8011/";
  15. // 切换模块时是否提示当前模块名称(用于对内介绍项目时便捷显示模块名称)
  16. const showModuleName = 0;
  17. // const reportBaseUrl = "http://10.127.7.241:8083";
  18. const reportBaseUrl = "http://172.16.12.101:8083";
  19. // const baseReportUrl = "http://10.127.7.196";
  20. const baseReportUrl = "http://172.16.12.101";
  21. // 是否隐藏控制台打印的 log info warn 信息
  22. const hideLog = false;
  23. // 是否隐藏控制台打印的 error 信息
  24. const hideError = false;
  25. if (hideLog || hideError) {
  26. const c = window?.console || {};
  27. const replaceFun = () => { };
  28. if (hideLog) {
  29. c.warn = c.info = c.log = replaceFun;
  30. }
  31. if (hideError) {
  32. c.error = replaceFun;
  33. }
  34. }
  35. // if (localTest) {
  36. // baseURL = "http://192.168.10.8:9002/" // 联机调试
  37. // } else {
  38. // baseURL = "http://10.155.32.14:9002/" // 正式环境
  39. // }
  40. websocketUrl = (baseURL.replace(/http:\/\/|https:\/\//g, "")) + "gyee-websocket";
  41. window.__MODE__ = {
  42. baseURL,
  43. websocketUrl,
  44. // adapterUrl,
  45. tilesUrl,
  46. tilesMaxLevel,
  47. showModuleName,
  48. reportBaseUrl,
  49. baseReportUrl,
  50. skipLogin
  51. };
  52. export default {
  53. baseURL,
  54. websocketUrl,
  55. // adapterUrl,
  56. tilesUrl,
  57. tilesMaxLevel,
  58. showModuleName,
  59. reportBaseUrl,
  60. baseReportUrl,
  61. skipLogin
  62. };