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
<template>
<div class="Page403 H100">
<div class="page_box">
<div class="img l-float" ></div>
<div class="title r-float">
<p>403</p>
<p>抱歉,你无权访问该页面</p>
<el-button type="primary" @click="toIndex">返回首页</el-button>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
computed: {
},
mounted() {
},
components: {
},
methods: {
toIndex() {
this.$router.push('/indexPage');
}
}
}
</script>
<style lang="less">
@import '../../style/common';
.Page403{
background: #F0F2F5;
border: 1px solid transparent;
.page_box{
width: 60%;
height: 50%;
margin: 7% auto;
box-sizing: border-box;
.img{
width: 50%;
height: 100%;
margin-top: 5%;
background-image: url("../../../static/images/pic/img403.png");
background-repeat: no-repeat;
background-size: 70%;
}
.title{
width: 40%;
height: 100%;
padding-top: 10%;
p:nth-child(1){
font-size: 4rem;
}
p:nth-child(2){
font-size:20px;
font-weight:400;
color:rgba(0,0,0,0.45);
margin-bottom: 10px;
}
.el-button{
padding: 6px 13px;
}
}
}
}
</style>