config.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. // 场馆 Record<场馆id, string>
  2. museum = { 3: "苏州博物馆(本馆),苏州博物馆(西馆)" };
  3. // 是否显示滑动手势
  4. showPointerHelper = true;
  5. // 是否开启预约调试弹窗
  6. venueDebug = false;
  7. // 是否开启云上博物接口请求
  8. openCloudApi = false;
  9. // 接口地址
  10. VUE_APP_BACKEND_URL = "http://192.168.20.245:8051";
  11. // 场馆预约
  12. venueReservationUrl = "";
  13. // 大运河
  14. riverUrl = "http://127.0.0.1:18080/ms-canalexhibit-touch-web/#/index";
  15. // 云游景区
  16. cloudScenicUrl =
  17. "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area" +
  18. "?T=" +
  19. Date.now();
  20. // 单位
  21. company = "江苏省文化和旅游厅";
  22. companyId = 101;
  23. // 云游景区 url 配置
  24. SCENIC_MUSEUM_POS = [
  25. {
  26. id: 37,
  27. name: "徐州市",
  28. top: 136,
  29. left: 300,
  30. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320300",
  31. },
  32. {
  33. id: 47,
  34. name: "宿迁市",
  35. left: 400,
  36. top: 227,
  37. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321300",
  38. },
  39. {
  40. id: 41,
  41. name: "连云港市",
  42. left: 550,
  43. top: 60,
  44. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320700",
  45. },
  46. {
  47. id: 42,
  48. name: "淮安市",
  49. left: 525,
  50. top: 270,
  51. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320800",
  52. },
  53. {
  54. id: 43,
  55. name: "盐城市",
  56. top: 300,
  57. left: 710,
  58. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320900",
  59. },
  60. {
  61. id: 44,
  62. name: "扬州市",
  63. left: 570,
  64. top: 380,
  65. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321000",
  66. },
  67. {
  68. id: 46,
  69. name: "泰州市",
  70. left: 700,
  71. top: 585,
  72. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321200",
  73. },
  74. {
  75. id: 35,
  76. name: "南京市",
  77. left: 404,
  78. top: 677,
  79. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320100",
  80. },
  81. {
  82. id: 45,
  83. name: "镇江市",
  84. left: 555,
  85. top: 665,
  86. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321100",
  87. },
  88. {
  89. id: 40,
  90. name: "南通市",
  91. left: 882,
  92. top: 616,
  93. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320600",
  94. },
  95. {
  96. id: 38,
  97. name: "常州市",
  98. left: 610,
  99. top: 770,
  100. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320400",
  101. },
  102. {
  103. id: 36,
  104. name: "无锡市",
  105. left: 750,
  106. top: 800,
  107. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320200",
  108. },
  109. {
  110. id: 39,
  111. name: "苏州市",
  112. left: 875,
  113. top: 800,
  114. url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320500",
  115. },
  116. ];