hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2023-05-31 16:10:33 2 * @Date: 2023-05-31 16:10:33
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-07-11 13:32:02 4 + * @LastEditTime: 2023-07-14 15:58:02
5 * @FilePath: /map-demo/index.html 5 * @FilePath: /map-demo/index.html
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -25,6 +25,6 @@ ...@@ -25,6 +25,6 @@
25 // serviceHost: 'https://oa-dev.onwall.cn/_AMapService', 25 // serviceHost: 'https://oa-dev.onwall.cn/_AMapService',
26 // } 26 // }
27 </script> 27 </script>
28 - <script src="https://webapi.amap.com/maps?v=2.0&key=381c6763e1fefd810fbab697f470149c&plugin=AMap.ElasticMarker,AMap.ImageLayer,AMap.ToolBar"></script> 28 + <script src="https://webapi.amap.com/maps?v=2.0&key=381c6763e1fefd810fbab697f470149c&plugin=AMap.ElasticMarker,AMap.ImageLayer,AMap.ToolBar,AMap.IndoorMap"></script>
29 </body> 29 </body>
30 </html> 30 </html>
......
...@@ -254,7 +254,6 @@ export default { ...@@ -254,7 +254,6 @@ export default {
254 } 254 }
255 }, 255 },
256 goToList(id) { 256 goToList(id) {
257 - console.warn(id);
258 this.$router.push({ 257 this.$router.push({
259 path: '/noticeList', 258 path: '/noticeList',
260 query: { 259 query: {
......
1 <!-- 1 <!--
2 * @Date: 2023-05-19 14:54:27 2 * @Date: 2023-05-19 14:54:27
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-07-11 15:12:47 4 + * @LastEditTime: 2023-07-14 15:38:24
5 * @FilePath: /map-demo/src/views/index.vue 5 * @FilePath: /map-demo/src/views/index.vue
6 * @Description: 地图主体页面 6 * @Description: 地图主体页面
7 --> 7 -->
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 <span style="font-size: 0.85rem; margin-top: 0rem; display: inline-block;">{{ item.name }}</span> 16 <span style="font-size: 0.85rem; margin-top: 0rem; display: inline-block;">{{ item.name }}</span>
17 </div> 17 </div>
18 <div style="width: 4rem;flex-shrink: 0;"></div> 18 <div style="width: 4rem;flex-shrink: 0;"></div>
19 - <div style="position: fixed; right: 0; background-color: white; height: 4.5rem; width: 4rem;"> 19 + <div style="position: fixed; right: 0; background-color: white; height: 5.5rem; width: 4rem;">
20 <div style="padding-top: 40%;"> 20 <div style="padding-top: 40%;">
21 <van-icon v-if="!show_nav_popup" name="arrow-up" @click="handleNavPopup" size="1.15rem" /> 21 <van-icon v-if="!show_nav_popup" name="arrow-up" @click="handleNavPopup" size="1.15rem" />
22 <van-icon v-else name="arrow-down" @click="handleNavPopup" size="1.15rem" /> 22 <van-icon v-else name="arrow-down" @click="handleNavPopup" size="1.15rem" />
...@@ -463,7 +463,7 @@ export default { ...@@ -463,7 +463,7 @@ export default {
463 borderWeight: 1, 463 borderWeight: 1,
464 strokeColor: '#fba601', 464 strokeColor: '#fba601',
465 strokeOpacity: 1, 465 strokeOpacity: 1,
466 - strokeWeight: 1, 466 + strokeWeight: 3,
467 // 折线样式还支持 'dashed' 467 // 折线样式还支持 'dashed'
468 strokeStyle: 'solid', 468 strokeStyle: 'solid',
469 // strokeStyle是dashed时有效 469 // strokeStyle是dashed时有效
...@@ -984,7 +984,7 @@ export default { ...@@ -984,7 +984,7 @@ export default {
984 position: fixed; 984 position: fixed;
985 bottom: 0; 985 bottom: 0;
986 left: 0; 986 left: 0;
987 - height: 4.5rem; 987 + height: 5.5rem;
988 width: 100%; 988 width: 100%;
989 background-color: white; 989 background-color: white;
990 text-align: center; 990 text-align: center;
......