mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-05-12 14:33:16 +08:00
38 lines
832 B
Vue
38 lines
832 B
Vue
<template>
|
|
<div class="common-layout">
|
|
<div class="content"><slot></slot></div>
|
|
<page-footer :link-list="footerLinks" :copyright="copyright"></page-footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PageFooter from '@/layouts/footer/PageFooter'
|
|
import {mapState} from 'vuex'
|
|
|
|
export default {
|
|
name: 'CommonLayout',
|
|
components: {PageFooter},
|
|
computed: {
|
|
...mapState('setting', ['footerLinks', 'copyright'])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.common-layout{
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
overflow: auto;
|
|
background: #f0f2f5 url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg') no-repeat center 110px;
|
|
background-size: 100%;
|
|
.content{
|
|
padding: 32px 0;
|
|
flex: 1;
|
|
@media (min-width: 768px){
|
|
padding: 112px 0 24px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|