Browse Source

公寓地图不显示问题

wyx
mk 3 months ago
parent
commit
71117a3d78
  1. 2
      public/index.html
  2. 2
      src/views/mz/dept/index.vue

2
public/index.html

@ -210,7 +210,7 @@
js.type = 'text/javascript'
document.getElementsByTagName('head')[0].appendChild(js);
}
toLoadJs('https://webapi.amap.com/maps?v=2.0&key=${process.env.VUE_APP_AMAP_KEY}&plugin=AMap.Geocoder,AMap.PlaceSearch&callback=initAMap')
toLoadJs('https://webapi.amap.com/maps?v=2.0&key=8b6b7a05f40d067af88f6f211412984e&plugin=AMap.Geocoder,AMap.PlaceSearch&callback=initAMap')
</script>
<body>

2
src/views/mz/dept/index.vue

@ -190,7 +190,7 @@ function loadAMapSDK() {
const script = document.createElement("script");
script.type = "text/javascript";
script.async = true;
script.src = `https://webapi.amap.com/maps?v=2.0&key=${process.env.VUE_APP_AMAP_KEY}&plugin=AMap.Geocoder,AMap.PlaceSearch&callback=initAMap`;
script.src = `https://webapi.amap.com/maps?v=2.0&key=8b6b7a05f40d067af88f6f211412984e&plugin=AMap.Geocoder,AMap.PlaceSearch&callback=initAMap`;
script.onerror = reject;
document.head.appendChild(script);
});

Loading…
Cancel
Save