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.
spring-boot-online-exam/frontend/src/layouts/UserLayout.vue

179 lines
4.0 KiB

<template>
<div id="userLayout" :class="['user-layout-wrapper', device]">
<div class="container">
<div class="top">
<div class="header">
<a href="/">
<img src="../assets/logo.svg" class="logo" alt="logo">
<span class="title">Online Exam</span>
</a>
</div>
<div class="desc">
基于SpringBoot+Vue实现的在线考试系统
</div>
</div>
<route-view></route-view>
<div class="footer">
<div class="links">
<a href="https://github.com/19920625lsg/spring-boot-online-exam" target="_blank">代码仓</a>
<a href="https://19920625lsg.github.io" target="_blank">关于我</a>
<a href="mailto:liangshanguang2@gmail.com">联系我</a>
</div>
<div class="copyright">
Copyright &copy; 2020 Liang Shan Guang
</div>
</div>
</div>
</div>
</template>
<script>
// 导入RouteView组件
import RouteView from './RouteView'
// 导入mixinDevice工具
import { mixinDevice } from '../utils/mixin'
export default {
// 组件名称
name: 'UserLayout',
// 注册组件
components: { RouteView },
// 混入mixinDevice工具
mixins: [mixinDevice],
// 数据
data () {
return {}
},
// 组件挂载后执行
mounted () {
// 添加userLayout类名
document.body.classList.add('userLayout')
},
// 组件销毁前执行
beforeDestroy () {
// 移除userLayout类名
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;
// 定义徽章样式
.badge {
position: absolute;
display: inline-block;
line-height: 1;
vertical-align: middle;
margin-left: -12px;
margin-top: -10px;
opacity: 0.8;
}
// 定义logo样式
.logo {
height: 44px;
vertical-align: top;
margin-right: 16px;
border-style: none;
}
// 定义标题样式
.title {
font-size: 33px;
color: rgba(0, 0, 0, .85);
font-family: Avenir, 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-weight: 600;
position: relative;
top: 2px;
}
}
// 定义描述样式
.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>