|
@@ -1,5 +1,8 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
+ <div class="scoped-bg">
|
|
|
+ </div>
|
|
|
+ <!-- https://img2.honglounews.com/20220111024440-5626.png -->
|
|
|
<div v-show="isDeal" :class="isDbShow ? 'scoped-deal-box' : 'scoped-deal-box t2'">
|
|
|
<div class="sdb-info">
|
|
|
<div class="p1">当前缩放级别:{{mapDiyObj.zoom}}<span class="more" @click="setShowChange">{{isMapSetShow ? '收起设置' : '展开设置'}}></span></div>
|
|
@@ -60,7 +63,7 @@
|
|
|
>
|
|
|
<template v-if="mapDiyObj.zoom > 13">
|
|
|
<template v-if="mapDiyObj.isSchoolShow === '1'">
|
|
|
- <el-amap-marker class="scoped-m-box" v-for="(marker, index) in {...schoolList}" :key="3000 + index"
|
|
|
+ <el-amap-marker class="scoped-m-box" v-for="(marker, index) in schoolList" :key="3000 + index"
|
|
|
icon="https://img2.honglounews.com/20220110041435-6276.png"
|
|
|
:position="marker.position"
|
|
|
:events="schoolEvents"
|
|
@@ -71,7 +74,7 @@
|
|
|
</el-amap-marker>
|
|
|
</template>
|
|
|
<template v-if="mapDiyObj.isEstateShow === '1'">
|
|
|
- <el-amap-marker class="scoped-m-box" v-for="(marker, index) in {...estateList}" :key="2000 + index"
|
|
|
+ <el-amap-marker class="scoped-m-box" v-for="(marker, index) in estateList" :key="2000 + index"
|
|
|
icon="https://img2.honglounews.com/20220110041411-6675.png"
|
|
|
:position="marker.position"
|
|
|
:events="estateEvents"
|
|
@@ -94,7 +97,7 @@
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<template v-if="mapDiyObj.isAreaShow === '1'">
|
|
|
- <el-amap-marker class="scoped-m-box" v-for="(marker, index) in {...areaList}" :key="4000 + index"
|
|
|
+ <el-amap-marker class="scoped-m-box" v-for="(marker, index) in areaList" :key="4000 + index"
|
|
|
icon="https://img2.honglounews.com/20220110041435-6276.png"
|
|
|
:position="marker.position"
|
|
|
:events="areaEvents"
|
|
@@ -894,6 +897,12 @@ export default {
|
|
|
color: #313131;
|
|
|
box-shadow: 0 0 3px #ccc;
|
|
|
}
|
|
|
+::v-deep .amap-logo{
|
|
|
+ display: none!important;;
|
|
|
+}
|
|
|
+::v-deep .amap-copyright {
|
|
|
+ opacity:0;
|
|
|
+}
|
|
|
|
|
|
|
|
|
.scoped-marker-area {
|
|
@@ -909,4 +918,22 @@ export default {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+.scoped-bg {
|
|
|
+ width: 180px;
|
|
|
+ height: 30px;
|
|
|
+ background: url(./img/bg.png);
|
|
|
+ background-size: 100%;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 999999;
|
|
|
+ // left: 50%;
|
|
|
+ // top: 50%;
|
|
|
+ // margin-left: -150px;
|
|
|
+ // margin-top: -25px;
|
|
|
+ // transform: rotate(-45deg);
|
|
|
+ left: 10px;
|
|
|
+ bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
</style>
|