Surpriseplus
2022-11-12 50f52beb0ed100105166f62027cd0b15e6b596dc
src/views/Home.vue
@@ -1,13 +1,17 @@
<template>
  <div class="home">
    <el-container>
      <el-header>
        <nav-menu></nav-menu>
      </el-header>
      <el-main>
        <router-view />
      </el-main>
      <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>
@@ -18,30 +22,35 @@
  name: "Home",
  components: {
    navMenu,
  },
  data() {
    return {
      shwomMapview: true,
    };
  },
  methods: {},
  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-header {
      padding: 0;
      height: 160px !important;
    }
    .el-main {
      margin: 0px;
      padding: 10px;
      background-color: rgb(53, 53, 57);
    }
  }
  .el-main {
    margin: 0px;
    padding: 10px;
    background: rgb(61, 76, 112);
  }
}
</style>