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
| <template>
| <div class="home">
| <el-container>
| <el-container>
| <el-aside>
| <nav-menu></nav-menu>
| </el-aside>
| <el-main>
| <!-- <synthesis class="showsynthesis" v-show="shwomMapview"></synthesis> -->
| <router-view />
| </el-main>
| </el-container>
| </el-container>
| <!-- <iframe src="http://localhost/LFWeb/test.html" width="100%" height="100%"></iframe> -->
| </div>
| </template>
|
| <script>
| import navMenu from "../components/navMenu";
| // import synthesis from "./Synthesis/index.vue";
| export default {
| name: "Home",
| components: {
| navMenu,
|
| },
| data() {
| return {
| shwomMapview: true,
| };
| },
| methods: {
|
| },
| };
| </script>
| <style lang="less">
| .home {
| height: 100vh;
| position: relative;
| background-color: #3b4d6e;
| .el-aside {
| margin: 26px 0 0 27px;
| width: 249px;
| // background-color: #bfa;
| }
| .el-container {
| height: 100%;
| }
| .el-main {
| margin: 0px;
| padding: 10px;
| background: rgb(61, 76, 112);
| }
| }
| </style>
|
|