|
@@ -74,7 +74,7 @@
|
|
|
<introduce v-if="showIntroduce" />
|
|
|
<telephone v-if="showTelephone" />
|
|
|
<clink v-if="showLink" />
|
|
|
- <div class="tools-share" @click="onShare">
|
|
|
+ <div class="tools-share" @click="onShare" v-show="ready">
|
|
|
<img :src="require(`@/assets/images/icon2/share@2x.png`)" alt="" />
|
|
|
</div>
|
|
|
<div class="tools-more" @click="showMore = false" v-if="showMore">
|
|
@@ -97,7 +97,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="tools-right">
|
|
|
- <div @click="onIsBGM" v-if="isHasNormalBGM">
|
|
|
+ <div @click="onIsBGM" v-if="isHasNormalBGM" v-show="ready">
|
|
|
<img
|
|
|
:src="
|
|
|
require(`@/assets/images/icon2/${
|
|
@@ -109,7 +109,7 @@
|
|
|
alt=""
|
|
|
/>
|
|
|
</div>
|
|
|
- <div @click="onIsCommentary" v-if="isHasExplanationBGM">
|
|
|
+ <div @click="onIsCommentary" v-if="isHasExplanationBGM" v-show="ready">
|
|
|
<img
|
|
|
:src="
|
|
|
require(`@/assets/images/icon2/${
|
|
@@ -143,6 +143,8 @@ import clink from "./control/link";
|
|
|
|
|
|
const store = useStore();
|
|
|
|
|
|
+const ready = computed(() => store.getters["scene/ready"]);
|
|
|
+
|
|
|
const showTours = computed(() => store.getters["fdkk/isShowToursList"]);
|
|
|
|
|
|
const metadata = computed(() => store.getters["scene/metadata"]);
|
|
@@ -280,6 +282,7 @@ onMounted(() => {
|
|
|
});
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|