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
<template>
<div class="app-content">
<div class="welcome_page">
<div class="title">
<div class="welcome home-font"><span>欢迎登录!</span></div>
<div class="systemName home-font"><span>{{systemTitle}}</span></div>
</div>
<div class="img">
</div>
</div>
</div>
</template>
<script>
export default {
name: 'dashboardPerson',
components: { },
data () {
return {
systemTitle: process.env.VUE_APP_SYSTEM_TITLE,
};
},
created () {
},
methods: {
},
};
</script>
<style scoped lang="less">
.app-content {
.welcome_page {
position: relative;
width: 750px;
height: 100%;
padding-top: 3%;
margin: 0 auto;
overflow: hidden;
.title {
.welcome {
line-height: 74px;
}
.systemName {
margin-top: 10px;
line-height: 74px;
}
.home-font {
color: #0079fe;
font-family: "PingFang SC";
font-style: normal;
font-weight: 600;
font-size: 40px;
}
}
.img {
margin-top: 20px;
width: 688px;
height: 476px;
background: url("../../../../static/images/example.png");
}
}
}
</style>