modeConfig.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. // const baseReportUrl = "http://10.127.7.196";
  18. const baseReportUrl = "http://172.16.12.101";
  19. // 是否隐藏控制台打印的 log info warn 信息
  20. const hideLog = false;
  21. // 是否隐藏控制台打印的 error 信息
  22. const hideError = false;
  23. if (hideLog || hideError) {
  24. const c = window?.console || {};
  25. const replaceFun = () => { };
  26. if (hideLog) {
  27. c.warn = c.info = c.log = replaceFun;
  28. }
  29. if (hideError) {
  30. c.error = replaceFun;
  31. }
  32. }
  33. // if (localTest) {
  34. // baseURL = "http://192.168.10.8:9002/" // 联机调试
  35. // } else {
  36. // baseURL = "http://10.155.32.14:9002/" // 正式环境
  37. // }
  38. websocketUrl = (baseURL.replace(/http:\/\/|https:\/\//g, "")) + "gyee-websocket";
  39. window.__MODE__ = {
  40. baseURL,
  41. websocketUrl,
  42. // adapterUrl,
  43. tilesUrl,
  44. tilesMaxLevel,
  45. showModuleName,
  46. reportBaseUrl,
  47. baseReportUrl
  48. };
  49. export default {
  50. baseURL,
  51. websocketUrl,
  52. // adapterUrl,
  53. tilesUrl,
  54. tilesMaxLevel,
  55. showModuleName,
  56. reportBaseUrl,
  57. baseReportUrl
  58. };