mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-22 01:06:43 +08:00
90 lines
1.8 KiB
Vue
90 lines
1.8 KiB
Vue
<template>
|
||
<div>
|
||
<portal-header current="article"></portal-header>
|
||
<div class="errPage-container">
|
||
|
||
<el-row>
|
||
<el-col :span="12">
|
||
<h1 class="text-jumbo text-ginormous">
|
||
页面路径错误或500错误!
|
||
</h1>
|
||
<h2>系统访问错误!</h2>
|
||
<h6>对不起,系统无法连接,请检查网络或咨询管理人员</h6>
|
||
<ul class="list-unstyled">
|
||
<li class="link-type">
|
||
<a href="/pc/login">转向登录</a>
|
||
</li>
|
||
</ul>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
|
||
</el-col>
|
||
</el-row>
|
||
|
||
</div>
|
||
<portal-footer></portal-footer>
|
||
</div>
|
||
</template>
|
||
<script>
|
||
import portalHeader from '@/components/PortalHeader.vue';
|
||
import portalFooter from '@/components/PortalFooter.vue';
|
||
export default {
|
||
name: 'Page500',
|
||
components: { portalHeader, portalFooter},
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
back() {
|
||
if (this.$route.query.noGoBack) {
|
||
this.$router.push({ path: '/' })
|
||
} else {
|
||
this.$router.go(-1)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.errPage-container {
|
||
width: 800px;
|
||
max-width: 100%;
|
||
margin: 100px auto;
|
||
.pan-back-btn {
|
||
background: #008489;
|
||
color: #fff;
|
||
border: none!important;
|
||
}
|
||
.pan-gif {
|
||
margin: 0 auto;
|
||
display: block;
|
||
}
|
||
.pan-img {
|
||
display: block;
|
||
margin: 0 auto;
|
||
width: 100%;
|
||
}
|
||
.text-jumbo {
|
||
font-size: 60px;
|
||
font-weight: 700;
|
||
color: #484848;
|
||
}
|
||
.list-unstyled {
|
||
font-size: 14px;
|
||
li {
|
||
padding-bottom: 5px;
|
||
}
|
||
a {
|
||
color: #008489;
|
||
text-decoration: none;
|
||
&:hover {
|
||
text-decoration: underline;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|