13693261870
2023-06-21 cdf12fc9e88b1af69f5c85165eb9fef4e23bf57a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
 
<template>
  <div class="box">
    <!-- 标题页面 -->
    <div class="header">
      <header-page></header-page>
    </div>
    <!--中间信息弹窗 -->
    <div class="Popuper">
      <PopupPage></PopupPage>
    </div>
 
    <!-- 左侧菜单 Rectangle 133.png -->
    <div class="Content">
      <div class="leftMenu">
        <left-page></left-page>
      </div>
    </div>
    <div class="Content1">
      <div class="rightMenu">
        <right-page></right-page>
      </div>
    </div>
 
    <!-- 重点视频选择区 -->
    <div class="FoucsVideo">
      <focus-page></focus-page>
    </div>
    <!-- 视频播放区 -->
    <div class="videoPlayBack">
      <video-play-back-page></video-play-back-page>
    </div>
    <!-- 热点框 -->
    <div class="Press">
      <press-page></press-page>
    </div>
    <!-- 全景视频 -->
    <div class="panoramic"
         v-if="$store.state.ShowPanoramicFlag">
      <panoramic-page></panoramic-page>
    </div>
    <!-- 地图页面 -->
    <map-page> </map-page>
  </div>
</template>
 
<script>
import HeaderPage from './HeaderPage/index.vue'
import PopupPage from './PopupPage/index.vue'
import MapPage from './MapPage/index.vue'
import LeftPage from './LeftPage/index.vue'
import RightPage from './RightPage/index.vue'
import FocusPage from './FocusPage/index.vue'
import videoPlayBackPage from './VideoPlaybackPage/index.vue'
import PressPage from './PressPage/index.vue'
import PanoramicPage from './PanoramicPage/index.vue'
export default {
  //import引入的组件需要注入到对象中才能使用
  components: {
    HeaderPage,
    PopupPage,
    MapPage,
    LeftPage,
    RightPage,
    FocusPage,
    videoPlayBackPage,
    PressPage,
    PanoramicPage,
  },
  data () {
    //这里存放数据
    return {
      showVideoFlag: false,
    }
  },
  //方法集合
  methods: {},
  created () { },
  mounted () {
    //  var position =DEFAULT_VIEW
    //  //巡航到某个位置 时长7秒
    //  map.setView(new TUVector3(position.x, position.y, position.z), new TURotator(position.roll,position.pitch, position.yaw,position.distance) ) ;
  },
}
</script>
<style lang="less" scoped>
//@import url(); 引入公共css类
.box {
  // display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow-x: hidden;
  .header {
    height: 250px;
    width: 100%;
    z-index: 1000;
    position: absolute;
  }
  .Content {
    width: 33%;
    height: 100%;
    background: url('../../assets/img/2.png') no-repeat center;
    background-size: 100% 100%;
    z-index: 999;
    position: absolute;
  }
 
  .Content1 {
    width: 33%;
    height: 100%;
    right: 0%;
    background: url('../../assets/img/1.png') no-repeat center;
    background-size: 100% 100%;
    z-index: 999;
    position: absolute;
  }
  .Press {
    width: 590px;
    height: 60px;
    z-index: 1000;
    left: 1330px;
    top: 179px;
    padding: 16px;
    position: absolute;
    border-radius: 5px;
    background: url('../../assets/img/bg.png') no-repeat center;
    background-size: 100% 100%;
  }
  .panoramic {
    width: 1828px;
    height: 904px;
    left: 1850px;
    top: 89px;
    z-index: 11111;
    position: absolute;
  }
  .Popuper {
    width: 916px;
    height: 160px;
    z-index: 999;
    left: 2423px;
    top: 167px;
    position: absolute;
  }
  .leftMenu {
    height: 949px;
    width: 1134px;
    left: -79px;
    // top: 128px;
    top: 59px;
    position: absolute;
  }
  .rightMenu {
    position: absolute;
    width: 1134px;
    height: 949px;
    right: -100px;
    // top: 128px;
    top: 59px;
  }
  .FoucsVideo {
    width: 627px;
    height: 747px;
    left: 640px;
    top: 167px;
    position: absolute;
    z-index: 1111;
  }
  .videoPlayBack {
    position: absolute;
    width: 891px;
    height: 694px;
    right: 648px;
    top: 188px;
    z-index: 1111;
  }
}
</style>