mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 03:49:22 +08:00
feat: add state of min page height in setting module; 🌟
新增:vuex setting 模块增加页面最小高度 state;
This commit is contained in:
parent
58e81ffad0
commit
7e82c948da
@ -31,7 +31,7 @@ import PageFooter from './footer/PageFooter'
|
|||||||
import Drawer from '../components/tool/Drawer'
|
import Drawer from '../components/tool/Drawer'
|
||||||
import SideMenu from '../components/menu/SideMenu'
|
import SideMenu from '../components/menu/SideMenu'
|
||||||
import Setting from '../components/setting/Setting'
|
import Setting from '../components/setting/Setting'
|
||||||
import {mapState} from 'vuex'
|
import {mapState, mapMutations} from 'vuex'
|
||||||
|
|
||||||
const minHeight = window.innerHeight - 64 - 24 - 122
|
const minHeight = window.innerHeight - 64 - 24 - 122
|
||||||
|
|
||||||
@ -48,13 +48,8 @@ export default {
|
|||||||
showSetting: false
|
showSetting: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
provide() {
|
|
||||||
return{
|
|
||||||
layoutMinHeight: minHeight
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['isMobile', 'theme', 'layout', 'footerLinks', 'copyright', 'fixedHeader', 'fixedSideBar', 'hideSetting']),
|
...mapState('setting', ['isMobile', 'theme', 'layout', 'footerLinks', 'copyright', 'fixedHeader', 'fixedSideBar', 'hideSetting', 'pageMinHeight']),
|
||||||
sideMenuWidth() {
|
sideMenuWidth() {
|
||||||
return this.collapsed ? '80px' : '256px'
|
return this.collapsed ? '80px' : '256px'
|
||||||
},
|
},
|
||||||
@ -66,6 +61,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
...mapMutations('setting', ['correctPageMinHeight']),
|
||||||
toggleCollapse () {
|
toggleCollapse () {
|
||||||
this.collapsed = !this.collapsed
|
this.collapsed = !this.collapsed
|
||||||
},
|
},
|
||||||
@ -73,6 +69,12 @@ export default {
|
|||||||
this.toggleCollapse()
|
this.toggleCollapse()
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
this.correctPageMinHeight(minHeight - 1)
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
this.correctPageMinHeight(-minHeight + 1)
|
||||||
|
},
|
||||||
beforeCreate () {
|
beforeCreate () {
|
||||||
menuData = this.$router.options.routes.find((item) => item.path === '/').children
|
menuData = this.$router.options.routes.find((item) => item.path === '/').children
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="page-layout">
|
<div class="page-layout">
|
||||||
<page-header :style="`margin-top: ${multiPage ? 0 : -24}px`" :breadcrumb="breadcrumb" :title="pageTitle" :logo="logo" :avatar="avatar">
|
<page-header ref="pageHeader" :style="`margin-top: ${multiPage ? 0 : -24}px`" :breadcrumb="breadcrumb" :title="pageTitle" :logo="logo" :avatar="avatar">
|
||||||
<slot name="action" slot="action"></slot>
|
<slot name="action" slot="action"></slot>
|
||||||
<slot slot="content" name="headerContent"></slot>
|
<slot slot="content" name="headerContent"></slot>
|
||||||
<div slot="content" v-if="!this.$slots.headerContent && desc">
|
<div slot="content" v-if="!this.$slots.headerContent && desc">
|
||||||
@ -21,14 +21,15 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import PageHeader from '@/components/page/header/PageHeader'
|
import PageHeader from '@/components/page/header/PageHeader'
|
||||||
import {mapState} from 'vuex'
|
import {mapState, mapMutations} from 'vuex'
|
||||||
export default {
|
export default {
|
||||||
name: 'PageLayout',
|
name: 'PageLayout',
|
||||||
components: {PageHeader},
|
components: {PageHeader},
|
||||||
props: ['desc', 'logo', 'title', 'avatar', 'linkList', 'extraImage'],
|
props: ['desc', 'logo', 'title', 'avatar', 'linkList', 'extraImage'],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
page: {}
|
page: {},
|
||||||
|
pageHeaderHeight: 0,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -36,11 +37,28 @@ export default {
|
|||||||
this.page = this.$route.meta.page
|
this.page = this.$route.meta.page
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
updated() {
|
||||||
|
if (!this._inactive) {
|
||||||
|
this.updatePageHeight()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
this.updatePageHeight()
|
||||||
|
},
|
||||||
|
deactivated() {
|
||||||
|
this.updatePageHeight(0)
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.updatePageHeight()
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.page = this.$route.meta.page
|
this.page = this.$route.meta.page
|
||||||
},
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
this.updatePageHeight(0)
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['layout', 'multiPage']),
|
...mapState('setting', ['layout', 'multiPage', 'pageMinHeight']),
|
||||||
pageTitle() {
|
pageTitle() {
|
||||||
let pageTitle = this.page && this.page.title
|
let pageTitle = this.page && this.page.title
|
||||||
return this.title || this.$t(pageTitle) || this.routeName
|
return this.title || this.$t(pageTitle) || this.routeName
|
||||||
@ -60,9 +78,13 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
return this.getRouteBreadcrumb()
|
return this.getRouteBreadcrumb()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
marginCorrect() {
|
||||||
|
return this.multiPage ? 24 : 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
...mapMutations('setting', ['correctPageMinHeight']),
|
||||||
getRouteBreadcrumb() {
|
getRouteBreadcrumb() {
|
||||||
let routes = this.$route.matched
|
let routes = this.$route.matched
|
||||||
let breadcrumb = []
|
let breadcrumb = []
|
||||||
@ -72,6 +94,14 @@ export default {
|
|||||||
breadcrumb.push(this.$t(key.substring(1).replace(new RegExp('/', 'g'), '.') + '.name'))
|
breadcrumb.push(this.$t(key.substring(1).replace(new RegExp('/', 'g'), '.') + '.name'))
|
||||||
})
|
})
|
||||||
return breadcrumb
|
return breadcrumb
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 用于计算页面内容最小高度
|
||||||
|
* @param newHeight
|
||||||
|
*/
|
||||||
|
updatePageHeight(newHeight = this.$refs.pageHeader.$el.offsetHeight + this.marginCorrect) {
|
||||||
|
this.correctPageMinHeight(this.pageHeaderHeight - newHeight)
|
||||||
|
this.pageHeaderHeight = newHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<div :class="['admin-header-right', headerTheme]">
|
<div :class="['admin-header-right', headerTheme]">
|
||||||
<header-search class="header-item" />
|
<header-search class="header-item" />
|
||||||
<a-tooltip class="header-item" title="帮助文档" placement="bottom" >
|
<a-tooltip class="header-item" title="帮助文档" placement="bottom" >
|
||||||
<a>
|
<a href="https://iczer.github.io/vue-antd-admin/" target="_blank">
|
||||||
<a-icon type="question-circle-o" />
|
<a-icon type="question-circle-o" />
|
||||||
</a>
|
</a>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
|
@ -51,6 +51,9 @@ export default {
|
|||||||
{ key: '2', icon: 'vertical-left', text: this.$t('closeRight') },
|
{ key: '2', icon: 'vertical-left', text: this.$t('closeRight') },
|
||||||
{ key: '3', icon: 'close', text: this.$t('closeOthers') }
|
{ key: '3', icon: 'close', text: this.$t('closeOthers') }
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
tabsOffset() {
|
||||||
|
return this.multiPage ? 24 : 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
@ -58,6 +61,12 @@ export default {
|
|||||||
this.pageList.push(route)
|
this.pageList.push(route)
|
||||||
this.activePage = route.fullPath
|
this.activePage = route.fullPath
|
||||||
},
|
},
|
||||||
|
mounted () {
|
||||||
|
this.correctPageMinHeight(-this.tabsOffset)
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
this.correctPageMinHeight(this.tabsOffset)
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
'$route': function (newRoute) {
|
'$route': function (newRoute) {
|
||||||
this.activePage = newRoute.fullPath
|
this.activePage = newRoute.fullPath
|
||||||
@ -72,6 +81,9 @@ export default {
|
|||||||
if (!newVal) {
|
if (!newVal) {
|
||||||
this.pageList = [this.$route]
|
this.pageList = [this.$route]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
tabsOffset(newVal, oldVal) {
|
||||||
|
this.correctPageMinHeight(oldVal - newVal)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -167,7 +179,7 @@ export default {
|
|||||||
pageName(path) {
|
pageName(path) {
|
||||||
return this.$t(path.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')
|
return this.$t(path.substring(1).replace(new RegExp('/', 'g'), '.') + '.name')
|
||||||
},
|
},
|
||||||
...mapMutations('setting', ['setDustbins'])
|
...mapMutations('setting', ['setDustbins', 'correctPageMinHeight'])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<exception-page :style="`min-height: ${minHeight}px`" type="403" />
|
<exception-page :style="`min-height: ${pageMinHeight}px`" type="403" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -8,12 +8,8 @@ import {mapState} from 'vuex'
|
|||||||
export default {
|
export default {
|
||||||
name: 'Exp403',
|
name: 'Exp403',
|
||||||
components: {ExceptionPage},
|
components: {ExceptionPage},
|
||||||
inject: ['layoutMinHeight'],
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['multiPage']),
|
...mapState('setting', ['pageMinHeight'])
|
||||||
minHeight() {
|
|
||||||
return this.multiPage ? this.layoutMinHeight - 32 : this.layoutMinHeight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<exception-page :style="`min-height: ${minHeight}px`" type="404" />
|
<exception-page :style="`min-height: ${pageMinHeight}px`" type="404" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -8,13 +8,8 @@ import {mapState} from 'vuex'
|
|||||||
export default {
|
export default {
|
||||||
name: 'Exp404',
|
name: 'Exp404',
|
||||||
components: {ExceptionPage},
|
components: {ExceptionPage},
|
||||||
inject: ['layoutMinHeight'],
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['multiPage']),
|
...mapState('setting', ['pageMinHeight'])
|
||||||
minHeight() {
|
|
||||||
let layoutMinHeight = this.layoutMinHeight || window.innerHeight
|
|
||||||
return this.multiPage ? layoutMinHeight - 32 : layoutMinHeight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<exception-page :style="`min-height: ${minHeight}px`" type="500" />
|
<exception-page :style="`min-height: ${pageMinHeight}px`" type="500" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -8,12 +8,8 @@ import {mapState} from 'vuex'
|
|||||||
export default {
|
export default {
|
||||||
name: 'Exp500',
|
name: 'Exp500',
|
||||||
components: {ExceptionPage},
|
components: {ExceptionPage},
|
||||||
inject: ['layoutMinHeight'],
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapState('setting', ['multiPage']),
|
...mapState('setting', ['pageMinHeight'])
|
||||||
minHeight() {
|
|
||||||
return this.multiPage ? this.layoutMinHeight - 24 : this.layoutMinHeight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -10,6 +10,11 @@ const options = {
|
|||||||
name: '登录页',
|
name: '登录页',
|
||||||
component: Login
|
component: Login
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '*',
|
||||||
|
name: '404',
|
||||||
|
component: () => import('@/pages/exception/404'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
name: '首页',
|
name: '首页',
|
||||||
@ -158,17 +163,17 @@ const options = {
|
|||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '404',
|
path: '404',
|
||||||
name: '404',
|
name: 'Exp404',
|
||||||
component: () => import('@/pages/exception/404')
|
component: () => import('@/pages/exception/404')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '403',
|
path: '403',
|
||||||
name: '403',
|
name: 'Exp403',
|
||||||
component: () => import('@/pages/exception/403')
|
component: () => import('@/pages/exception/403')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '500',
|
path: '500',
|
||||||
name: '500',
|
name: 'Exp500',
|
||||||
component: () => import('@/pages/exception/500')
|
component: () => import('@/pages/exception/500')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import {checkAuthorization} from '@/utils/request'
|
|
||||||
import Router from 'vue-router'
|
import Router from 'vue-router'
|
||||||
|
import {checkAuthorization} from '@/utils/request'
|
||||||
import {options, loginIgnore} from './config'
|
import {options, loginIgnore} from './config'
|
||||||
|
|
||||||
Vue.use(Router)
|
Vue.use(Router)
|
||||||
|
@ -7,6 +7,7 @@ export default {
|
|||||||
animates: ADMIN.animates,
|
animates: ADMIN.animates,
|
||||||
palettes: ADMIN.palettes,
|
palettes: ADMIN.palettes,
|
||||||
dustbins: [],
|
dustbins: [],
|
||||||
|
pageMinHeight: 0,
|
||||||
...config,
|
...config,
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
@ -42,6 +43,9 @@ export default {
|
|||||||
},
|
},
|
||||||
setDustbins(state, dustbins) {
|
setDustbins(state, dustbins) {
|
||||||
state.dustbins = dustbins
|
state.dustbins = dustbins
|
||||||
|
},
|
||||||
|
correctPageMinHeight(state, minHeight) {
|
||||||
|
state.pageMinHeight += minHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user