|
@@ -29,46 +29,48 @@ import LoadingLogo from "@/components/assembly/Loading";
|
|
|
import Opening from "@/components/assembly/Opening";
|
|
|
import { createApp } from "@/app";
|
|
|
|
|
|
-import { ref, onMounted, computed, watch, nextTick } from "vue";
|
|
|
+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 { useApp } from '@/app'
|
|
|
-import { useI18n, getLocale } from '@/i18n'
|
|
|
-const { t } = useI18n({ useScope: 'global' })
|
|
|
+import { useApp } from "@/app";
|
|
|
+import { useI18n, getLocale } from "@/i18n";
|
|
|
+const { t } = useI18n({ useScope: "global" });
|
|
|
|
|
|
const fixOpening = {
|
|
|
- '小行星开场': 1,
|
|
|
- '水平巡游开场': 2,
|
|
|
- '小行星巡游开场': 3,
|
|
|
- '水晶球开场': 4,
|
|
|
- '小行星缩放开场': 5,
|
|
|
-}
|
|
|
+ 小行星开场: 1,
|
|
|
+ 水平巡游开场: 2,
|
|
|
+ 小行星巡游开场: 3,
|
|
|
+ 水晶球开场: 4,
|
|
|
+ 小行星缩放开场: 5,
|
|
|
+};
|
|
|
|
|
|
const store = useStore();
|
|
|
const show = ref(false);
|
|
|
const workEnable = ref(true);
|
|
|
const coverInfo = ref({});
|
|
|
|
|
|
-const lang = getLocale()
|
|
|
-
|
|
|
+const lang = getLocale();
|
|
|
|
|
|
const currentScene = computed(() => store.getters["scene/currentScene"]);
|
|
|
-const currentCatalogRoot = computed(() => store.getters["scene/currentCatalogRoot"]);
|
|
|
+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
|
|
|
+ window.location.href = window.location.href.replace(
|
|
|
+ "show.html",
|
|
|
+ "showMobile.html"
|
|
|
+ );
|
|
|
+ return;
|
|
|
}
|
|
|
let res = await checkWork();
|
|
|
if (!res.data) {
|
|
@@ -76,48 +78,57 @@ onMounted(async () => {
|
|
|
return;
|
|
|
}
|
|
|
getPanoInfo().then(async (data) => {
|
|
|
+ isShowOpeningAnimation.value = Number(data.isShowOpeningAnimation);
|
|
|
store.commit("scene/setScenes", data.scenes);
|
|
|
- store.commit("scene/setPassword", data.password === "" ? false : data.password);
|
|
|
+ store.commit(
|
|
|
+ "scene/setPassword",
|
|
|
+ data.password === "" ? false : data.password
|
|
|
+ );
|
|
|
store.commit("scene/setMetaData", data);
|
|
|
- document.title = data.name || t('common.no_title')
|
|
|
+ document.title = data.name || t("common.no_title");
|
|
|
|
|
|
let firstScene = "";
|
|
|
|
|
|
-
|
|
|
if (config.sceneNum) {
|
|
|
- firstScene = data.scenes.find((item) => item.sceneCode == 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);
|
|
|
+ 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 = ''
|
|
|
+ let flag = "";
|
|
|
|
|
|
if (item.children) {
|
|
|
item.children.some((sub) => {
|
|
|
- flag = data.scenes.some(son => {
|
|
|
+ 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 (
|
|
|
+ String(son.category).toLowerCase() == String(sub).toLowerCase()
|
|
|
+ );
|
|
|
+ });
|
|
|
+ return flag;
|
|
|
});
|
|
|
}
|
|
|
- return flag
|
|
|
+ return flag;
|
|
|
});
|
|
|
|
|
|
- data.catalogRoot = ttt
|
|
|
-
|
|
|
+ data.catalogRoot = ttt;
|
|
|
|
|
|
- let catalog = data.catalogs.find((item) => item.id == currentScene.value.category);
|
|
|
+ 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);
|
|
|
+ let temp =
|
|
|
+ item.children && item.children.find((sub) => sub == catalog.id);
|
|
|
if (temp) {
|
|
|
store.commit("scene/setCurrentCatalogRoot", item);
|
|
|
return;
|
|
@@ -131,11 +142,13 @@ onMounted(async () => {
|
|
|
|
|
|
show.value = true;
|
|
|
|
|
|
- let isHavePano = data.scenes.some(item => item.type == 'pano')
|
|
|
+ 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()}`,
|
|
|
+ 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",
|
|
@@ -143,13 +156,20 @@ onMounted(async () => {
|
|
|
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,
|
|
|
+ "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 || '小行星开场']
|
|
|
+ "skin_settings.littleplanetintro":
|
|
|
+ fixOpening[data.openingAnimationType || "小行星开场"],
|
|
|
+ "skin_settings.lptswitch": unref(isShowOpeningAnimation),
|
|
|
},
|
|
|
passQueryParameters: true,
|
|
|
});
|
|
|
+ console.log('gemer',currentScene.value.icon);
|
|
|
|
|
|
coverInfo.value = data.coverInfo || {};
|
|
|
app.Scene.lock();
|
|
@@ -161,47 +181,53 @@ onMounted(async () => {
|
|
|
if (isHavePano) {
|
|
|
app.Scene.on("sceneReady", () => {
|
|
|
if (app.krpanoDom) {
|
|
|
-
|
|
|
- let defaultMask = `%SWFPATH%/skin/masking_${lang}.png`
|
|
|
+ let defaultMask = `%SWFPATH%/skin/masking_${lang}.png`;
|
|
|
|
|
|
if (earthMask.value) {
|
|
|
app.krpanoDom.set(`hotspot[nadirlogo].url`, defaultMask);
|
|
|
- app.krpanoDom.set(`hotspot[nadirlogo].visible`, earthMask.value.isShow);
|
|
|
+ app.krpanoDom.set(
|
|
|
+ `hotspot[nadirlogo].visible`,
|
|
|
+ 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`, skyMask.value.isShow);
|
|
|
+ app.krpanoDom.set(
|
|
|
+ `hotspot[peaklogo].visible`,
|
|
|
+ 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'));
|
|
|
-
|
|
|
+ app.krpanoDom.set(
|
|
|
+ `layer[webvr_exitbutton].html`,
|
|
|
+ t("common.exit_vr")
|
|
|
+ );
|
|
|
}
|
|
|
- let hotspots = []
|
|
|
+ let hotspots = [];
|
|
|
if (currentScene.value.someData) {
|
|
|
- hotspots = typeof currentScene.value.someData == 'string' ? JSON.parse(currentScene.value.someData).hotspots : currentScene.value.someData.hotspots
|
|
|
+ hotspots =
|
|
|
+ typeof currentScene.value.someData == "string"
|
|
|
+ ? JSON.parse(currentScene.value.someData).hotspots
|
|
|
+ : currentScene.value.someData.hotspots;
|
|
|
}
|
|
|
- console.log(hotspots,'hotspotshotspotshotspotshotspots');
|
|
|
+ console.log(hotspots, "hotspotshotspotshotspotshotspots");
|
|
|
app.Tags.initHotspot(hotspots, false);
|
|
|
});
|
|
|
-
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
});
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.ui-view-layout {
|
|
|
position: relative;
|
|
|
-
|
|
|
}
|
|
|
</style>
|