123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <template>
- <template v-if="workEnable">
- <LoadingLogo />
- <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/Tags";
- import Password from "@/components/assembly/Password";
- import Share from "@/components/assembly/Share";
- import Error from "@/components/assembly/Error";
- import TitieSlide from "@/components/assembly/titieSlide";
- import UiGather from "@/components/UIGather/";
- import LoadingLogo from "@/components/assembly/Loading";
- import Opening from "@/components/assembly/Opening";
- import { createApp } from "@/app";
- import { ref, onMounted, computed, watch, nextTick, unref } from "vue";
- import { getPanoInfo, checkWork } from "@/apis";
- import { useStore } from "vuex";
- import config from "@/utils/config";
- import browser from "@/utils/browser";
- import { useAudio } from "@/hooks/useAudio";
- import { useI18n, getLocale } from "@/i18n";
- const { t } = useI18n({ useScope: "global" });
- const store = useStore();
- const show = ref(false);
- const workEnable = ref(true);
- const coverInfo = ref({});
- const hasPasswordLock = ref(false);
- const lang = getLocale();
- 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(
- "show.html",
- "showMobile.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) {
- firstScene = data.scenes.find(
- (item) => item.sceneCode == config.sceneNum
- );
- } else if (data.firstScene) {
- firstScene = data.scenes.find(
- (item) => item.sceneCode == data.firstScene.sceneCode
- );
- }
- // 所有audio入口
- const currentSceneData = firstScene || data.scenes[0];
- store.dispatch(
- "audio/initNormalBGM",
- data.backgroundMusic ? data.backgroundMusic.ossPath : ""
- );
- store.commit("scene/setCurrentScene", currentSceneData);
- // 过滤空分组
- 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");
- 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.org_vlookat": currentScene.value.initVisual
- ? currentScene.value.initVisual.vlookat
- : 0,
- "view.org_hlookat": currentScene.value.initVisual
- ? currentScene.value.initVisual.hlookat
- : 0,
- "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":
- typeof data.openingAnimationType === "number"
- ? data.openingAnimationType
- : 1,
- "skin_settings.lptswitch": unref(isShowOpeningAnimation),
- },
- passQueryParameters: true,
- });
- if (app) {
- coverInfo.value = data.coverInfo || {};
- app.Scene.lock();
- //如果不需要开场封面就直接渲染
- if (!coverInfo.value?.isShowCover) {
- app.render();
- }
- if (isHavePano) {
- app.Scene.on("sceneReady", () => {
- if (app.krpanoDom) {
- const { sky, earth } = currentScene.value.customMask;
- handleMasksUpdate(sky, earth, app);
- 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);
- handleVisualLimit(app, currentScene.value);
- });
- }
- const { initDefaultAudio } = useAudio();
- initDefaultAudio();
- }
- });
- });
- const handlePass = () => {
- hasPasswordLock.value = false;
- };
- const handleVisualLimit = (app, currentScene) => {
- const { vlookatmax, vlookatmin } = currentScene.initVisual;
- // console.log('initVisual',currentScene.initVisual)
- app.krpanoDom.set(`view.limitview`, "lookat");
- app.krpanoDom.set(`view.vlookatmin`, vlookatmin);
- app.krpanoDom.set(`view.vlookatmax`, vlookatmax);
- };
- const handleMasksUpdate = (skyMask, earthMask, app) => {
- const lang = getLocale();
- let defaultMask = `%SWFPATH%/skin/masking_${lang}.png`;
- console.log("defaultMask", defaultMask);
- if (skyMask) {
- if ("isShow" in skyMask) {
- app.krpanoDom.set(`hotspot[peaklogo].visible`, Boolean(skyMask.isShow));
- }
- if (skyMask.icon) {
- app.krpanoDom.set(`hotspot[peaklogo].url`, skyMask.icon);
- } else {
- app.krpanoDom.set(`hotspot[peaklogo].url`, defaultMask);
- }
- if ("scale" in skyMask) {
- app.krpanoDom.set(`hotspot[peaklogo].scale`, skyMask.scale);
- }
- if ("antidistorted" in skyMask) {
- app.krpanoDom.set(`hotspot[peaklogo].distorted`, skyMask.antidistorted);
- if (!skyMask.antidistorted) {
- app.krpanoDom.set(`hotspot[peaklogo].scale`, skyMask.scale * 0.50);
- }
- }
- }
- if (earthMask) {
- if ("isShow" in earthMask) {
- app.krpanoDom.set(
- `hotspot[nadirlogo].visible`,
- Boolean(earthMask.isShow)
- );
- }
- if (earthMask.icon) {
- app.krpanoDom.set(`hotspot[nadirlogo].url`, earthMask.icon);
- }
- if ("scale" in earthMask) {
- app.krpanoDom.set(`hotspot[nadirlogo].scale`, earthMask.scale);
- }
- if ("antidistorted" in earthMask) {
- app.krpanoDom.set(
- `hotspot[nadirlogo].distorted`,
- earthMask.antidistorted
- );
- if (!earthMask.antidistorted) {
- app.krpanoDom.set(`hotspot[nadirlogo].scale`, earthMask.scale * 0.50);
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ui-view-layout {
- position: relative;
- z-index: 0;
- }
- </style>
|