c1b532ad
梁保满
权限配置,路由基础设置
|
1
2
3
|
<template>
<div class="page404">
<div class="i404">
|
2126f54b
梁保满
404图片地址
|
4
|
<img src="../assets/images/img404/i404.png" />
|
c1b532ad
梁保满
权限配置,路由基础设置
|
5
6
7
8
|
<p>您的访问页面可能被删除或者不存在</p>
<a href="/">返回首页</a>
</div>
<div class="sign">
|
2126f54b
梁保满
404图片地址
|
9
|
<img src="../assets/images/img404/sign.png" />
|
c1b532ad
梁保满
权限配置,路由基础设置
|
10
11
12
13
14
15
16
|
</div>
</div>
</template>
<script>
export default {
name: "page404",
|
2126f54b
梁保满
404图片地址
|
17
18
|
mounted() {},
};
|
c1b532ad
梁保满
权限配置,路由基础设置
|
19
20
|
</script>
|
2126f54b
梁保满
404图片地址
|
21
22
23
24
25
26
27
28
29
|
<style lang="scss" scoped>
.page404 {
width: 100%;
height: 100%;
background: url("../assets/images/img404/bg404.jpg") no-repeat;
background-size: cover;
overflow: hidden;
& > div {
width: 50%;
|
c1b532ad
梁保满
权限配置,路由基础设置
|
30
|
height: 100%;
|
2126f54b
梁保满
404图片地址
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
}
.i404 {
float: left;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
img {
width: 500px;
height: 200px;
margin-top: -100px;
}
p {
font-size: 20px;
color: #3d95ff;
margin-top: 2px;
|
c1b532ad
梁保满
权限配置,路由基础设置
|
47
|
}
|
2126f54b
梁保满
404图片地址
|
48
49
50
51
52
53
54
55
56
57
58
|
a {
display: block;
width: 150px;
height: 50px;
color: #ffffff;
background: #56a9ff;
margin-top: 35px;
line-height: 50px;
text-align: center;
border-radius: 50px;
font-size: 18px;
|
c1b532ad
梁保满
权限配置,路由基础设置
|
59
60
|
}
}
|
2126f54b
梁保满
404图片地址
|
61
62
63
64
65
66
67
68
69
|
.sign {
float: right;
img {
width: 600px;
margin-top: 50px;
margin-left: 50px;
}
}
}
|
c1b532ad
梁保满
权限配置,路由基础设置
|
70
|
</style>
|