Bläddra i källkod

移动端 mode不是全景漫游时,不显示底部菜单按钮和场景列表

任一存 2 år sedan
förälder
incheckning
aaf715e2d8
1 ändrade filer med 8 tillägg och 1 borttagningar
  1. 8 1
      src/views/SwkkView.vue

+ 8 - 1
src/views/SwkkView.vue

@@ -11,6 +11,7 @@
     </h1>
 
     <menu
+      v-show="!($isMobile && mode !== 2)"
       :style="{
         bottom: isShowTourGuide ? 'calc(183px + 30px)' : '',
       }"
@@ -153,7 +154,7 @@
 
     <!-- 导览栏 -->
     <div
-      v-show="isShowTourGuide"
+      v-show="isShowTourGuide && !($isMobile && mode !== 2)"
       class="tour-guide-wrap swiper-root"
       :style="{
         zIndex: $globalConfig.zIndex.swkkGuideBar.self
@@ -513,6 +514,12 @@ export default {
         floorplan: 3,
         dollhouse: 4,
       }[toMode]
+      if (this.$isMobile && this.mode !== 2) {
+        this.$msgCenter.publish('need-hide-bottom-bar')
+      }
+      if (this.$isMobile && this.mode === 2) {
+        this.$msgCenter.publish('need-show-bottom-bar')
+      }
     })
 
     kankan.render()