welcome.vue
1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
<div class="welcome-container">
<div class="welcome-content">
<div class="welcome-header">
<h1 class="welcome-title">欢迎使用绿千美业ERP系统</h1>
<p class="welcome-subtitle">Welcome to Lvqian Beauty ERP System</p>
</div>
<div class="welcome-footer">
<p>如有问题,请联系系统管理员</p>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'Welcome',
data() {
return {}
}
}
</script>
<style lang="scss" scoped>
.welcome-container {
height: 100%;
overflow: hidden;
background: #fff;
}
.welcome-content {
height: 100%;
padding: 60px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.welcome-header {
text-align: center;
margin-bottom: 60px;
color: #303133;
.welcome-title {
font-size: 48px;
font-weight: 600;
margin: 0 0 16px 0;
}
.welcome-subtitle {
font-size: 20px;
margin: 0;
color: #909399;
}
}
.welcome-footer {
text-align: center;
color: #909399;
font-size: 14px;
margin-top: 40px;
}
@media (max-width: 768px) {
.welcome-header {
.welcome-title {
font-size: 32px;
}
.welcome-subtitle {
font-size: 16px;
}
}
}
</style>