parent
839ba55fe1
commit
1f26734a13
5 changed files with 45 additions and 22 deletions
@ -1,16 +1,24 @@ |
|||||||
<template> |
<template> |
||||||
<exception-page type="403" /> |
<exception-page :style="`margin-top: ${marginTop}px; min-height: ${minHeight}px`" type="403" /> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ExceptionPage from '../../components/exception/ExceptionPage' |
import ExceptionPage from '@/components/exception/ExceptionPage' |
||||||
|
import {mapState} from 'vuex' |
||||||
export default { |
export default { |
||||||
components: {ExceptionPage} |
components: {ExceptionPage}, |
||||||
|
inject: ['layoutMinHeight'], |
||||||
|
computed: { |
||||||
|
...mapState('setting', ['multiPage']), |
||||||
|
marginTop() { |
||||||
|
return this.multiPage ? -24 : 0 |
||||||
|
}, |
||||||
|
minHeight() { |
||||||
|
return this.multiPage ? this.layoutMinHeight - 32 : this.layoutMinHeight |
||||||
|
} |
||||||
|
} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style scoped lang="less"> |
<style scoped lang="less"> |
||||||
.exception-page{ |
|
||||||
margin: -24px 0 0; |
|
||||||
} |
|
||||||
</style> |
</style> |
||||||
|
@ -1,16 +1,24 @@ |
|||||||
<template> |
<template> |
||||||
<exception-page type="404" /> |
<exception-page :style="`margin-top: ${marginTop}px; min-height: ${minHeight}px`" type="404" /> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ExceptionPage from '../../components/exception/ExceptionPage' |
import ExceptionPage from '@/components/exception/ExceptionPage' |
||||||
|
import {mapState} from 'vuex' |
||||||
export default { |
export default { |
||||||
components: {ExceptionPage} |
components: {ExceptionPage}, |
||||||
|
inject: ['layoutMinHeight'], |
||||||
|
computed: { |
||||||
|
...mapState('setting', ['multiPage']), |
||||||
|
marginTop() { |
||||||
|
return this.multiPage ? -24 : 0 |
||||||
|
}, |
||||||
|
minHeight() { |
||||||
|
return this.multiPage ? this.layoutMinHeight - 32 : this.layoutMinHeight |
||||||
|
} |
||||||
|
} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style scoped lang="less"> |
<style scoped lang="less"> |
||||||
.exception-page{ |
|
||||||
margin: -24px 0 0; |
|
||||||
} |
|
||||||
</style> |
</style> |
||||||
|
@ -1,16 +1,24 @@ |
|||||||
<template> |
<template> |
||||||
<exception-page type="500" /> |
<exception-page :style="`margin-top: ${marginTop}px; min-height: ${minHeight}px`" type="500" /> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script> |
<script> |
||||||
import ExceptionPage from '../../components/exception/ExceptionPage' |
import ExceptionPage from '@/components/exception/ExceptionPage' |
||||||
|
import {mapState} from 'vuex' |
||||||
export default { |
export default { |
||||||
components: {ExceptionPage} |
components: {ExceptionPage}, |
||||||
|
inject: ['layoutMinHeight'], |
||||||
|
computed: { |
||||||
|
...mapState('setting', ['multiPage']), |
||||||
|
marginTop() { |
||||||
|
return this.multiPage ? -24 : 0 |
||||||
|
}, |
||||||
|
minHeight() { |
||||||
|
return this.multiPage ? this.layoutMinHeight - 24 : this.layoutMinHeight |
||||||
|
} |
||||||
|
} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style scoped lang="less"> |
<style scoped lang="less"> |
||||||
.exception-page{ |
|
||||||
margin: -24px 0 0; |
|
||||||
} |
|
||||||
</style> |
</style> |
||||||
|
Loading…
Reference in new issue