|
@@ -980,7 +980,6 @@ export default {
|
|
|
this.map.remove(this.economicsArr);
|
|
|
}
|
|
|
smallClassMap(params).then((res) => {
|
|
|
- console.log(res);
|
|
|
if (res.code == 200) {
|
|
|
this.smallClassMapArr = res.rows;
|
|
|
if (this.leftPage === 'forest') {
|
|
@@ -1732,6 +1731,8 @@ export default {
|
|
|
.marker-imgs {
|
|
|
display: block;
|
|
|
line-height: 18px !important;
|
|
|
+ width: 376px;
|
|
|
+ overflow: auto;
|
|
|
img {
|
|
|
width: 40px;
|
|
|
height: 40px;
|
|
@@ -1739,6 +1740,23 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
+ .marker-imgs::-webkit-scrollbar{
|
|
|
+ background: transparent;
|
|
|
+ opacity: 0.6px;
|
|
|
+ width: 10px;
|
|
|
+ height: 8px;
|
|
|
+ }
|
|
|
+ .marker-imgs::-webkit-scrollbar-thumb{
|
|
|
+ background: rgba($color: #07a2eb8e, $alpha: 0.6);
|
|
|
+ border-radius: 20px;
|
|
|
+ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
|
+
|
|
|
+ }
|
|
|
+ .marker-imgs::-webkit-scrollbar-track {/*滚动条里面轨道*/
|
|
|
+ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
|
+ border-radius: 10px;
|
|
|
+ background: transparent;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|