123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <template>
- <LoadingLogo v-if="workEnable" />
- <template v-if="workEnable">
- <Opening
- :coverData="coverInfo"
- v-if="coverInfo.isShowCover && !hasPasswordLock"
- />
- <Password @pass="handlePass" />
- <Share />
- <div class="ui-view-layout" :class="{ show: show }">
- <Pano />
- <Tags />
- <UiGather />
- <TitieSlide />
- </div>
- </template>
- <Error v-else />
- </template>
- <script setup>
- import Pano from "@/components/Pano";
- import Tags from "@/components/assembly/MobileTags";
- import Password from "@/components/assembly/Password";
- import Share from "@/components/assembly/Share";
- import Error from "@/components/assembly/Error";
- import UiGather from "@/components/UIGather/mobile";
- import TitieSlide from "@/components/assembly/titieSlide";
- import Opening from "@/components/assembly/OpeningMobile";
- import LoadingLogo from "@/components/assembly/Loading";
- import { createApp } from "@/app";
- import { ref, onMounted, computed, unref, watch, nextTick } from "vue";
- import { getPanoInfo, checkWork } from "@/apis";
- import { useStore } from "vuex";
- import config from "@/utils/config";
- import browser from "@/utils/browser";
- import { useApp } from "@/app";
- import { useWxShared } from "@/hooks/useWxshared";
- import { useI18n, getLocale } from "@/i18n";
- const { t } = useI18n({ useScope: "global" });
- const { initWxShare } = useWxShared();
- initWxShare();
- const coverInfo = ref({});
- const fixOpening = {
- opa1: 1,
- opa2: 2,
- opa3: 3,
- opa4: 4,
- opa5: 5,
- };
- const store = useStore();
- const show = ref(false);
- const workEnable = ref(true);
- const lang = getLocale();
- const hasPasswordLock = ref(false);
- const currentScene = computed(() => store.getters["scene/currentScene"]);
- const currentCatalogRoot = computed(
- () => store.getters["scene/currentCatalogRoot"]
- );
- const isAutoRotate = computed(() => store.getters["functions/isAutoRotate"]);
- const earthMask = computed(() => store.getters["scene/earthMask"]);
- const skyMask = computed(() => store.getters["scene/skyMask"]);
- const isShowOpeningAnimation = ref(0);
- onMounted(async () => {
- if (!browser.isMobile()) {
- window.location.href = window.location.href.replace(
- "showMobile.html",
- "show.html"
- );
- return;
- }
- let res = await checkWork();
- if (!res.data) {
- workEnable.value = res.data;
- return;
- }
- getPanoInfo().then(async (data) => {
- isShowOpeningAnimation.value = data.isShowOpeningAnimation
- ? Number(data.isShowOpeningAnimation)
- : 0;
- //TODO 兼容1.2.0或以下数据
- if (
- !("isShowOpeningAnimation" in data) &&
- "openingAnimationType" in data &&
- data.openingAnimationType.length > 0
- ) {
- console.log("小行星没有开关,但有openingAnimationType强制开启");
- isShowOpeningAnimation.value = 1;
- }
- store.commit("scene/setScenes", data.scenes);
- store.commit(
- "scene/setPassword",
- data.password === "" ? false : data.password
- );
- if (data.password.length > 0) {
- hasPasswordLock.value = true;
- }
- store.commit("scene/setMetaData", data);
- document.title = data.name || t("common.no_title");
- let firstScene = "";
- if (config.sceneNum) {
- console.log(config.sceneNum);
- firstScene = data.scenes.find(
- (item) => item.sceneCode == config.sceneNum
- );
- } else if (data.firstScene) {
- firstScene = data.scenes.find(
- (item) => item.sceneCode == data.firstScene.sceneCode
- );
- }
- store.commit("scene/setCurrentScene", firstScene || data.scenes[0]);
- // 过滤空分组
- let ttt = data.catalogRoot.filter((item) => {
- let flag = "";
- if (item.children) {
- item.children.some((sub) => {
- flag = data.scenes.some((son) => {
- // console.log(String(son.category).toLowerCase(), String(sub).toLowerCase());
- return (
- String(son.category).toLowerCase() == String(sub).toLowerCase()
- );
- });
- return flag;
- });
- }
- return flag;
- });
- data.catalogRoot = ttt;
- let catalog = data.catalogs.find(
- (item) => item.id == currentScene.value.category
- );
- // 查询初始场景的所在1级分组
- data.catalogRoot.forEach((item) => {
- let temp =
- item.children && item.children.find((sub) => sub == catalog.id);
- if (temp) {
- store.commit("scene/setCurrentCatalogRoot", item);
- return;
- }
- });
- // 查询初始场景的所在2级分组
- store.commit("scene/setCurrentSecondary", catalog);
- store.commit("functions/setAutoRotate", !!data.isAuto);
- show.value = true;
- let isHavePano = data.scenes.some((item) => item.type == "pano");
- document.body.setAttribute("is-mobile", true);
- const app = createApp({
- // xml: "%HTMLPATH%/static/template/tour.xml",
- xml: `${process.env.VUE_APP_CDN}/720yun_fd_manage/${
- config.projectNum
- }/tour.xml?rnd=${Math.random()}`,
- swf: "%HTMLPATH%/showviewer/lib/krpano/tour.swf",
- target: "pano",
- html5: "auto",
- mobilescale: 1,
- isHavePano,
- vars: {
- startscene: "scene_" + currentScene.value.sceneCode,
- "view.vlookat": currentScene.value.initVisual
- ? currentScene.value.initVisual.vlookat
- : 0,
- "view.hlookat": currentScene.value.initVisual
- ? currentScene.value.initVisual.hlookat
- : 0,
- "autorotate.enabled": !!data.isAuto,
- "skin_settings.littleplanetintro":
- fixOpening[data.openingAnimationType] || 1,
- "skin_settings.lptswitch": unref(isShowOpeningAnimation),
- },
- passQueryParameters: true,
- });
- coverInfo.value = data.coverInfo || {};
- app.Scene.lock();
- //如果不需要开场封面就直接渲染
- if (!coverInfo.value?.isShowCover) {
- app.render();
- }
- if (isHavePano) {
- app.Scene.on("sceneReady", () => {
- if (app.krpanoDom) {
- let defaultMask = `%SWFPATH%/skin/masking_${lang}.png`;
- if (earthMask.value) {
- app.krpanoDom.set(`hotspot[nadirlogo].url`, defaultMask);
- app.krpanoDom.set(
- `hotspot[nadirlogo].visible`,
- Boolean(earthMask.value.isShow)
- );
- if (earthMask.value.icon) {
- app.krpanoDom.set(`hotspot[nadirlogo].url`, earthMask.value.icon);
- }
- }
- if (skyMask.value) {
- app.krpanoDom.set(`hotspot[peaklogo].url`, defaultMask);
- app.krpanoDom.set(
- `hotspot[peaklogo].visible`,
- Boolean(skyMask.value.isShow)
- );
- if (skyMask.value.icon) {
- app.krpanoDom.set(`hotspot[peaklogo].url`, skyMask.value.icon);
- }
- }
- app.krpanoDom.set(
- `layer[webvr_exitbutton].html`,
- t("common.exit_vr")
- );
- }
- let hotspots = [];
- if (currentScene.value.someData) {
- hotspots =
- typeof currentScene.value.someData == "string"
- ? JSON.parse(currentScene.value.someData).hotspots
- : currentScene.value.someData.hotspots;
- }
- app.Tags.initHotspot(hotspots, false);
- });
- }
- });
- });
- const handlePass = () => {
- hasPasswordLock.value = false;
- };
- </script>
- <style lang="scss" scoped>
- .ui-view-layout {
- position: relative;
- }
- </style>
|