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
| <template>
| <div class="login-page">
| <div class="login-content">
|
| </div>
| </div>
| </template>
| <script>
| export default {
| name: 'Login',
| data() {
| return {
|
| }
| },
| created() {
| }
| }
| </script>
| <style scoped lang="less">
| .login-page {
| width: 100%;
| height: 100vh;
| background: url('../../assets/login/backGround@2x.png') no-repeat center center;
| background-size: 100% 100%;
| display: flex;
| justify-content: center;
| align-items: center;
|
| .login-content {
| width: 550px;
| height: 694px;
| background: #fff;
| box-shadow: 0px 20px 30px 0px rgba(0, 97, 95, 0.2);
| border-radius: 20px;
| border: 4px solid #FFFFFF;
| }
|
|
|
| }
| </style>
|
|