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
| <template>
| <div class="error-page">
| <div class="error-code">3<span>0</span>2</div>
| <div class="error-desc">啊哦~ 你所访问的页面不存在</div>
| <div class="error-handle">
| <router-link to="/">
| <a-button type="primary" class="login-form-button">返回首页</a-button>
| </router-link>
| </div>
| </div>
| </template>
|
| <style scoped>
| .error-page{
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: column;
| width: 100%;
| height: 100%;
| background: #f3f3f3;
| box-sizing: border-box;
| }
| .error-code{
| line-height: 1;
| font-size: 250px;
| font-weight: bolder;
| color: #2d8cf0;
| }
| .error-code span{
| color: #00a854;
| }
| .error-desc{
| font-size: 30px;
| color: #777;
| }
| .error-handle{
| margin-top: 30px;
| padding-bottom: 200px;
| }
| .error-btn{
| margin-left: 100px;
| }
| </style>
|
|