123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- // 场馆 Record<场馆id, string>
- museum = { 3: "苏州博物馆(本馆),苏州博物馆(西馆)" };
- // 是否显示滑动手势
- showPointerHelper = true;
- // 是否开启预约调试弹窗
- venueDebug = false;
- // 是否开启云上博物接口请求
- openCloudApi = false;
- // 接口地址
- VUE_APP_BACKEND_URL = "http://192.168.20.245:8051";
- // 场馆预约
- venueReservationUrl = "";
- // 大运河
- riverUrl = "http://127.0.0.1:18080/ms-canalexhibit-touch-web/#/index";
- // 云游景区
- cloudScenicUrl =
- "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area" +
- "?T=" +
- Date.now();
- // 单位
- company = "江苏省文化和旅游厅";
- companyId = 101;
- // 云游景区 url 配置
- SCENIC_MUSEUM_POS = [
- {
- id: 37,
- name: "徐州市",
- top: 136,
- left: 300,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320300",
- },
- {
- id: 47,
- name: "宿迁市",
- left: 400,
- top: 227,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321300",
- },
- {
- id: 41,
- name: "连云港市",
- left: 550,
- top: 60,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320700",
- },
- {
- id: 42,
- name: "淮安市",
- left: 525,
- top: 270,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320800",
- },
- {
- id: 43,
- name: "盐城市",
- top: 300,
- left: 710,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320900",
- },
- {
- id: 44,
- name: "扬州市",
- left: 570,
- top: 380,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321000",
- },
- {
- id: 46,
- name: "泰州市",
- left: 700,
- top: 585,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321200",
- },
- {
- id: 35,
- name: "南京市",
- left: 404,
- top: 677,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320100",
- },
- {
- id: 45,
- name: "镇江市",
- left: 555,
- top: 665,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=321100",
- },
- {
- id: 40,
- name: "南通市",
- left: 882,
- top: 616,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320600",
- },
- {
- id: 38,
- name: "常州市",
- left: 610,
- top: 770,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320400",
- },
- {
- id: 36,
- name: "无锡市",
- left: 750,
- top: 800,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320200",
- },
- {
- id: 39,
- name: "苏州市",
- left: 875,
- top: 800,
- url: "http://192.168.9.78:18080/ms-mechanism-bs/default/on-cloud-scenic-area?areaCode=320500",
- },
- ];
|