integrated_traffic_vue/src/views/BI/index.vue

189 lines
4.7 KiB
Vue
Raw Normal View History

2024-01-25 10:28:53 +08:00
<template>
2024-01-25 11:35:41 +08:00
<div id="bi_container">
2024-02-21 09:42:49 +08:00
<div id="map" class="map_bg"></div>
2024-01-25 10:28:53 +08:00
<transition
enter-active-class="animate__animated animate__fadeInDown"
leave-active-class="animate__animated animate__fadeOutUp"
>
2024-02-21 09:42:49 +08:00
<div :key="transitionKey" class="header">
2024-01-29 17:43:23 +08:00
<div class="back" @click="router.back()">
2024-01-25 10:28:53 +08:00
<img src="/src/assets/images/map/back.png" alt="" />
</div>
<div class="light"></div>
<div class="title" />
</div>
</transition>
2024-02-21 09:42:49 +08:00
<div v-if="leftCurrentComponent" class="left_container">
2024-01-25 10:28:53 +08:00
<transition
enter-active-class="animate__animated animate__fadeInLeft"
leave-active-class="animate__animated animate__fadeOutLeft"
mode="out-in"
>
<component :is="leftCurrentComponent" />
</transition>
</div>
<div class="mid-container">
<bottom-options
v-model:left-current-component="leftCurrentComponent"
v-model:right-current-component="rightCurrentComponent"
v-model:right-option="right_option"
2024-02-22 11:57:42 +08:00
v-model:is-historical-trajectory="isHistoricalTrajectory"
2024-01-25 10:28:53 +08:00
/>
</div>
<transition
enter-active-class="animate__animated animate__fadeInRight"
leave-active-class="animate__animated animate__fadeOutRight"
mode="out-in"
>
2024-02-21 09:42:49 +08:00
<div v-if="rightCurrentComponent" class="right_container">
2024-01-25 10:28:53 +08:00
<component :is="rightCurrentComponent" />
</div>
</transition>
2024-02-21 09:42:49 +08:00
<div v-show="right_option" class="right_ico">
<right-ico></right-ico>
2024-01-25 10:28:53 +08:00
</div>
2024-02-22 11:57:42 +08:00
<historical-trajectory-options v-if="isHistoricalTrajectory" />
2024-01-25 10:28:53 +08:00
</div>
</template>
<script setup>
import autofit from "autofit.js";
2024-01-25 11:35:41 +08:00
import { onBeforeUnmount, onMounted, ref } from "vue";
2024-01-25 10:28:53 +08:00
import RightIco from "./components/rightico.vue";
import BottomOptions from "./components/bottom_options.vue";
2024-02-21 16:18:58 +08:00
import HistoricalTrajectoryOptions from "./components/historical_trajectory_options.vue";
2024-01-29 17:43:23 +08:00
import { useRouter } from "vue-router";
2024-01-31 09:03:02 +08:00
import { initMap } from "./js/map";
2024-02-26 08:47:12 +08:00
import { useUserStore } from "@/pinia/user.js";
import { getEnterpriseInfo } from "@/request/enterprise_management.js";
2024-01-29 17:43:23 +08:00
const router = useRouter();
2024-01-25 10:28:53 +08:00
const right_option = ref(true);
const transitionKey = ref(0);
const leftCurrentComponent = ref("");
const rightCurrentComponent = ref("");
2024-02-22 11:57:42 +08:00
const isHistoricalTrajectory = ref(false);
2024-02-26 08:47:12 +08:00
const userStore = useUserStore();
const CORPINFO_ID = userStore.getUserInfo.CORPINFO_ID;
2024-01-25 10:28:53 +08:00
2024-02-26 08:47:12 +08:00
onMounted(async () => {
2024-01-25 10:28:53 +08:00
autofit.init({
2024-02-05 10:18:41 +08:00
dh: document.querySelector(".map_bg").offsetHeight,
dw: 1920,
el: "#bi_container",
2024-01-25 10:28:53 +08:00
resize: true,
});
transitionKey.value = Math.random();
2024-02-26 08:47:12 +08:00
const corp = await getEnterpriseInfo({ CORPINFO_ID });
initMap(corp.pd);
2024-01-25 10:28:53 +08:00
});
2024-01-25 11:35:41 +08:00
onBeforeUnmount(() => {
2024-02-26 08:47:12 +08:00
window.$scene = null;
window.$icy = null;
window.$carmer = null;
2024-01-25 11:35:41 +08:00
autofit.off();
});
2024-01-25 10:28:53 +08:00
</script>
<style scoped lang="scss">
2024-01-25 11:35:41 +08:00
#bi_container {
2024-01-25 10:28:53 +08:00
width: 100%;
height: 100%;
color: #ffffff;
position: relative;
font-size: 14px;
.map_bg {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -9;
background-size: 100% 100%;
}
.header {
width: 100%;
height: 100px;
background: url("/src/assets/images/map/titlebg.png") no-repeat top center;
background-size: 100% 100%;
position: absolute;
.back {
position: absolute;
top: 0;
left: 0;
cursor: pointer;
}
.light {
background-image: url("/src/assets/images/map/gunag.png");
background-size: 100% 100%;
background-repeat: no-repeat;
width: 619px;
height: 55px;
position: absolute;
top: 50px;
left: 50%;
animation: scale 2s infinite;
@keyframes scale {
0% {
transform: translateX(-50%) scale(1);
}
50% {
transform: translateX(-50%) scale(0.5);
}
100% {
transform: translateX(-50%) scale(1);
}
}
}
.title {
width: 355px;
height: 50px;
text-align: center;
position: absolute;
left: 50%;
top: 15%;
transform: translate(-50%, 0%);
background: url("/src/assets/images/map/title.png") no-repeat top center;
}
}
.left_container {
width: 435px;
position: absolute;
left: 20px;
top: 100px;
}
.right_container {
width: 435px;
position: absolute;
right: 20px;
top: 100px;
}
.mid-container {
width: 934px;
height: 88px;
background-image: url("/src/assets/images/map/bottombg.png");
background-repeat: no-repeat;
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.right_ico {
position: fixed;
right: 20px;
bottom: 50px;
}
}
</style>