Sfoglia il codice sorgente

marker二次bug

pull/63/head
吴迪 2 anni fa
parent
commit
0d306a0bd1
3 ha cambiato i file con 10 aggiunte e 10 eliminazioni
  1. +2
    -2
      index.html
  2. +6
    -6
      src/views/task-manage/components/MapComp.vue
  3. +2
    -2
      src/views/task-manage/components/UserModal.vue

+ 2
- 2
index.html Vedi File

@@ -22,7 +22,7 @@
securityJsCode: 'eb839debb422cd65cc598664067ee7d8'
}
</script>
<style type="text/css">
<!-- <style type="text/css">
.amap-logo {
display: none;
opacity: 0 !important;
@@ -31,7 +31,7 @@
.amap-copyright {
opacity: 0;
}
</style>
</style> -->
</head>

<body>

+ 6
- 6
src/views/task-manage/components/MapComp.vue Vedi File

@@ -73,11 +73,11 @@ GMap.then((AMap) => {
padding: 5px 5px;
}

.amap_lib_placeSearch .poibox.highlight {
background-color: #CAE1FF;
}
// .amap_lib_placeSearch .poibox.highlight {
// background-color: #CAE1FF;
// }

.amap_lib_placeSearch .poi-more {
display: none !important;
}
// .amap_lib_placeSearch .poi-more {
// display: none !important;
// }
</style>

+ 2
- 2
src/views/task-manage/components/UserModal.vue Vedi File

@@ -77,7 +77,7 @@
@positive-click="userForm.patrolLocation = startVal"
@negative-click="showStart = false"
>
<map-comp @mapEmit="startHandle" />
<map-comp v-if="showStart" @mapEmit="startHandle" />
</n-modal>

<n-modal
@@ -89,7 +89,7 @@
@positive-click="userForm.endValue = endVal"
@negative-click="showEnd = false"
>
<map-comp @mapEmit="endHandle" />
<map-comp v-if="showEnd" @mapEmit="endHandle" />
</n-modal>

</template>

Loading…
Annulla
Salva