surprise
2024-01-02 b2fdf4f25251229adbe9a6963cb35fb7fc868172
src/components/index.vue
@@ -21,9 +21,8 @@
      </div>
    </div>
    <viewer1 class="mapViewer" :key="switchKey" v-show="viewer1Show" :style="viewer1Style"
      @mousemove.native="viewer1MouseMove" />
    <viewer class="mapViewer" ref="mapViewer" :style="viewerStyle" @mousemove.native="viewerMouseMove" />
    <viewer1 class="mapViewer" id="mapOl" :key="switchKey" v-show="viewer1Show" :style="viewer1Style" />
    <viewer class="mapViewer" id="mapView" ref="mapViewer" :style="viewerStyle" />
    <div class="controlPanel" :style="{
      width: `${size}`,
      height: `${size}`,
@@ -45,10 +44,14 @@
      <right ref="Right" />
      <leftpanel ref="Left" />
      <menupanel />
      <bottommenu ref="bottommenu" />
      <!-- <bottommenu ref="bottommenu" /> -->
      <signalling v-if="signallingShow"></signalling>
      <setting v-if="showSetting" />
      <qycharts v-if="$store.state.qyEchartsShow" />
    </div>
    <div id="imageModel" class="imageModel">
      <img id="myImage" class="image" src="">
    </div>
  </div>
</template>
@@ -236,6 +239,7 @@
.cacheImage{
  display: none !important;
}
.mapViewer {
  height: 100%;
}
@@ -247,8 +251,8 @@
}
#headlog {
  width: 965px;
  height: 70px;
  width: 1920px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 0;
@@ -337,4 +341,17 @@
.searchBtn {
  width: 40px;
}
.imageModel {
  z-index: 40;
  position: absolute;
  display: none;
}
.imageModel .image {
  width: 30px;
  height: 30px;
}
</style>