fix: the problem of calculating minimum height of page; 🐛

修复:页面内容最小高度计算错误问题;
master
iczer 5 years ago
parent a4281b62dc
commit 59bb834da8
  1. 14
      src/layouts/AdminLayout.vue
  2. 4
      src/layouts/footer/PageFooter.vue

@ -14,8 +14,8 @@
<a-layout class="admin-layout-main beauty-scroll"> <a-layout class="admin-layout-main beauty-scroll">
<admin-header :class="[{'fixed-tabs': fixedTabs, 'fixed-header': fixedHeader, 'multi-page': multiPage}]" :style="headerStyle" :menuData="headMenuData" :collapsed="collapsed" @toggleCollapse="toggleCollapse"/> <admin-header :class="[{'fixed-tabs': fixedTabs, 'fixed-header': fixedHeader, 'multi-page': multiPage}]" :style="headerStyle" :menuData="headMenuData" :collapsed="collapsed" @toggleCollapse="toggleCollapse"/>
<a-layout-header :class="['virtual-header', {'fixed-tabs' : fixedTabs, 'fixed-header': fixedHeader, 'multi-page': multiPage}]" v-show="fixedHeader"></a-layout-header> <a-layout-header :class="['virtual-header', {'fixed-tabs' : fixedTabs, 'fixed-header': fixedHeader, 'multi-page': multiPage}]" v-show="fixedHeader"></a-layout-header>
<a-layout-content class="admin-layout-content"> <a-layout-content class="admin-layout-content" :style="`min-height: ${minHeight}px;`">
<div :style="`min-height: ${minHeight}px; position: relative`"> <div style="position: relative">
<slot></slot> <slot></slot>
</div> </div>
</a-layout-content> </a-layout-content>
@ -34,14 +34,14 @@ import SideMenu from '../components/menu/SideMenu'
import Setting from '../components/setting/Setting' import Setting from '../components/setting/Setting'
import {mapState, mapMutations, mapGetters} from 'vuex' import {mapState, mapMutations, mapGetters} from 'vuex'
const minHeight = window.innerHeight - 64 - 24 - 122 // const minHeight = window.innerHeight - 64 - 122
export default { export default {
name: 'AdminLayout', name: 'AdminLayout',
components: {Setting, SideMenu, Drawer, PageFooter, AdminHeader}, components: {Setting, SideMenu, Drawer, PageFooter, AdminHeader},
data () { data () {
return { return {
minHeight: minHeight, minHeight: window.innerHeight - 64 - 122,
collapsed: false, collapsed: false,
showSetting: false, showSetting: false,
drawerOpen: false drawerOpen: false
@ -109,11 +109,11 @@ export default {
} }
}, },
created() { created() {
this.correctPageMinHeight(minHeight - 1) this.correctPageMinHeight(this.minHeight - 24)
this.setActivated(this.$route) this.setActivated(this.$route)
}, },
beforeDestroy() { beforeDestroy() {
this.correctPageMinHeight(-minHeight + 1) this.correctPageMinHeight(-this.minHeight + 24)
} }
} }
</script> </script>
@ -152,7 +152,7 @@ export default {
.admin-layout-content{ .admin-layout-content{
padding: 24px 24px 0; padding: 24px 24px 0;
/*overflow-x: hidden;*/ /*overflow-x: hidden;*/
min-height: calc(100vh - 64px - 122px); /*min-height: calc(100vh - 64px - 122px);*/
} }
.setting{ .setting{
background-color: @primary-color; background-color: @primary-color;

@ -20,8 +20,8 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.footer{ .footer{
padding: 0 16px; padding: 48px 16px 24px;
margin: 48px 0 24px; /*margin: 48px 0 24px;*/
text-align: center; text-align: center;
.copyright{ .copyright{
color: @text-color-second; color: @text-color-second;

Loading…
Cancel
Save