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
<!--
 * @Description: 
 * @Author: 王旭
 * @Date: 2022-02-24 11:28:59
 * @LastEditTime: 2022-03-01 16:56:25
 * @LastEditors: 王旭
-->
<template>
 <div class="box">
   <home-page></home-page>
 </div>
</template>
 
<script>
import HomePage  from './HomePage/index.vue'
import MapView  from './HomePage/MapPage/index.vue'
 
export default {
  components: {
    HomePage,
    MapView
  },
  data() {
    return {};
  },
  computed: {},
  methods: {},
  created() {},
  mounted(){
    window.onload=()=>{
 
    }
  }
};
</script>
<style lang="less">
.box {
  transform: scaleX(1) scaleY(1);
  width: 5760px;
  height: 1200px;
 
  background: rgba(26, 9, 2, 0);
     
}
 
</style>