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