2023-08-28 00:01:37 +08:00
|
|
|
<template>
|
2023-10-03 21:31:40 +08:00
|
|
|
<div id="app">
|
|
|
|
<!--大屏背景-->
|
|
|
|
<background-video></background-video>
|
|
|
|
<!--大屏内容-->
|
|
|
|
<div class="screen-content-max">
|
2024-04-04 00:34:20 +08:00
|
|
|
<screen-header :nav="1" v-if="!isMap"></screen-header>
|
|
|
|
<div class="main-app">
|
2023-10-03 21:31:40 +08:00
|
|
|
<router-view />
|
|
|
|
</div>
|
2023-08-28 00:01:37 +08:00
|
|
|
</div>
|
2023-10-03 21:31:40 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import './components/background_video'
|
|
|
|
export default {
|
2024-04-04 00:34:20 +08:00
|
|
|
data(){
|
|
|
|
return {
|
|
|
|
isMap:false
|
|
|
|
}
|
|
|
|
},
|
2023-10-03 21:31:40 +08:00
|
|
|
mounted(){
|
|
|
|
window.app=this;
|
2024-04-04 00:34:20 +08:00
|
|
|
this.isMap=location.hash.indexOf("#/map")>=0;
|
2023-10-03 21:31:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|