142 lines
2.7 KiB
Vue

<template>
<div id='userLayout' :class="['user-layout-wrapper', isMobile && 'mobile']">
<div class='container'>
<div class='top'>
<div class='header'>
<div class='logoView'>
<img src='~@/assets/bg-logo.jpg' class='logo' alt='logo'>
<span class='title'>人工智能产业园管理系统</span>
</div>
</div>
<div class='desc'>
</div>
</div>
<router-view />
<div class='footer'>
<div class='links'>
<a href='_self'>帮助</a>
<a href='_self'>隐私</a>
<a href='_self'>条款</a>
</div>
<div class='copyright'>
<a target='_blank' href='https://beian.miit.gov.cn'>苏ICP备19076302号-3</a>
</div>
</div>
</div>
</div>
</template>
<script>
import { deviceMixin } from '@/store/device-mixin'
export default {
name: 'UserLayout',
mixins: [deviceMixin],
mounted() {
document.body.classList.add('userLayout')
},
beforeDestroy() {
document.body.classList.remove('userLayout')
}
}
</script>
<style lang='less' scoped>
#userLayout.user-layout-wrapper {
height: 100%;
&.mobile {
.container {
.main {
max-width: 368px;
width: 98%;
}
}
}
.container {
width: 100%;
min-height: 100%;
background: #f0f2f5 url(~@/assets/background.svg) no-repeat 50%;
background-size: 100%;
padding: 110px 0 144px;
position: relative;
a {
text-decoration: none;
}
.top {
text-align: center;
.header {
height: 44px;
line-height: 44px;
.logoView {
display: flex;
justify-content: center;
align-items: center;
.logo {
height: 34px;
margin-right: 16px;
}
.title {
font-size: 33px;
color: rgba(0, 0, 0, .85);
font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-weight: 600;
}
}
}
.desc {
font-size: 14px;
color: rgba(0, 0, 0, 0.45);
margin-top: 12px;
margin-bottom: 40px;
}
}
.main {
min-width: 260px;
width: 368px;
margin: 0 auto;
}
.footer {
position: absolute;
width: 100%;
bottom: 0;
padding: 0 16px;
margin: 48px 0 24px;
text-align: center;
.links {
margin-bottom: 8px;
font-size: 14px;
a {
color: rgba(0, 0, 0, 0.45);
transition: all 0.3s;
&:not(:last-child) {
margin-right: 40px;
}
}
}
.copyright {
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
}
}
}
}
</style>