|
@@ -6,7 +6,7 @@
|
|
|
<div class="ui-view-layout" :class="{ show: show }">
|
|
|
<Pano />
|
|
|
<Tags />
|
|
|
- <UiGather />
|
|
|
+ <UiGather v-show="!vrStatus"/>
|
|
|
<TitieSlide/>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -48,6 +48,7 @@ const workEnable = ref(true);
|
|
|
|
|
|
const currentScene = computed(() => store.getters["scene/currentScene"]);
|
|
|
const currentCatalogRoot = computed(() => store.getters["scene/currentCatalogRoot"]);
|
|
|
+const vrStatus = computed(() => store.getters["functions/vrStatus"]);
|
|
|
|
|
|
const isAutoRotate = computed(() => store.getters["functions/isAutoRotate"]);
|
|
|
|