QYF-GitLab1
1 天以前 9cad6a832c786989be620573b09badccfe7e3b51
src/layout/baseLayout.vue
@@ -3,8 +3,8 @@
    <Header class="header"></Header>
    <div class="layoutContentBox" id="layout">
      <RouterView />
      <Footer class="footer"></Footer>
    </div>
    <Footer class="footer"></Footer>
    <login ref="loginRef"></login>
  </div>
</template>
@@ -35,14 +35,13 @@
<style lang="less" scoped>
.layoutBox {
  width: 100%;
  height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  .layoutContentBox {
    flex: 1;
    height: auto;
  }
  .header {
@@ -54,7 +53,6 @@
@media screen and (min-width: 1200px) {
  .layoutContentBox {
    flex: 1;
    overflow: auto;
  }
}
</style>