You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<exception-page :style="`margin-top: ${marginTop}px; min-height: ${minHeight}px`" type="500" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import ExceptionPage from '@/components/exception/ExceptionPage'
|
|
|
|
import {mapState} from 'vuex'
|
|
|
|
export default {
|
|
|
|
components: {ExceptionPage},
|
|
|
|
inject: ['layoutMinHeight'],
|
|
|
|
computed: {
|
|
|
|
...mapState('setting', ['multiPage']),
|
|
|
|
marginTop() {
|
|
|
|
return this.multiPage ? -24 : 0
|
|
|
|
},
|
|
|
|
minHeight() {
|
|
|
|
return this.multiPage ? this.layoutMinHeight - 24 : this.layoutMinHeight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
|
</style>
|