新增路由、异常页

This commit is contained in:
chenghx
2018-07-23 11:49:50 +08:00
parent 6d0488f775
commit bcaca47c0c
10 changed files with 277 additions and 41 deletions

View File

@@ -0,0 +1,14 @@
<template>
<exception-page type="403" />
</template>
<script>
import ExceptionPage from './ExceptionPage'
export default {
components: {ExceptionPage}
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,14 @@
<template>
<exception-page type="404" />
</template>
<script>
import ExceptionPage from './ExceptionPage'
export default {
components: {ExceptionPage}
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,14 @@
<template>
<exception-page type="500" />
</template>
<script>
import ExceptionPage from './ExceptionPage'
export default {
components: {ExceptionPage}
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,13 @@
<template>
<router-view />
</template>
<script>
export default {
name: 'Exception'
}
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,68 @@
<template>
<div class="exception">
<div class="img">
<img :src="config[type].img" />
<!--<div class="ele" :style="{backgroundImage: `url(${config[type].img})`}"/>-->
</div>
<div class="content">
<h1>{{config[type].title}}</h1>
<div class="desc">{{config[type].desc}}</div>
<div class="action">
<a-button type="primary" >返回首页</a-button>
</div>
</div>
</div>
</template>
<script>
import AButton from 'vue-antd-ui/es/button/button'
import Config from './typeConfig'
export default {
name: 'ExceptionPage',
props: ['type'],
components: {AButton},
data () {
return {
config: Config
}
}
}
</script>
<style lang="less" scoped>
.exception{
min-height: 500px;
height: 80%;
align-items: center;
text-align: center;
margin-top: 150px;
.img{
display: inline-block;
padding-right: 52px;
zoom: 1;
img{
height: 360px;
max-width: 430px;
}
}
.content{
display: inline-block;
flex: auto;
h1{
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
}
.desc{
color: rgba(0,0,0,.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
}
}
}
</style>

View File

@@ -0,0 +1,19 @@
const config = {
403: {
img: 'https://gw.alipayobjects.com/zos/rmsportal/wZcnGqRDyhPOEYFcZDnb.svg',
title: '403',
desc: '抱歉,你无权访问该页面'
},
404: {
img: 'https://gw.alipayobjects.com/zos/rmsportal/KpnpchXsobRgLElEozzI.svg',
title: '404',
desc: '抱歉,你访问的页面不存在或仍在开发中'
},
500: {
img: 'https://gw.alipayobjects.com/zos/rmsportal/RVRUAYdCGeYNBWoKiIwB.svg',
title: '500',
desc: '抱歉,服务器出错了'
}
}
export default config