86 lines
1.5 KiB
Vue
86 lines
1.5 KiB
Vue
<template>
|
|
<div class="page-container">
|
|
<el-button icon="arrow-left" @click="back">返回</el-button>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<h1 class="text-jumbo text-ginormous">Oops!</h1>
|
|
<h2>你没有权限去该页面</h2>
|
|
<h6>如有不满请联系你领导</h6>
|
|
<ul class="list-unstyled">
|
|
<li>或者你可以去:</li>
|
|
<li class="link-type">
|
|
<router-link to="/dashboard">回首页</router-link>
|
|
</li>
|
|
<li class="link-type">
|
|
<a href="/">随便看看</a>
|
|
</li>
|
|
</ul>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<img src="@/assets/images/401.svg" width="400" height="500" />
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useRouter } from "vue-router";
|
|
|
|
defineOptions({
|
|
name: "Page401",
|
|
});
|
|
|
|
const router = useRouter();
|
|
|
|
function back() {
|
|
router.back();
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page-container {
|
|
width: 100%;
|
|
padding: 100px;
|
|
|
|
.pan-back-btn {
|
|
color: #fff;
|
|
background: #008489;
|
|
border: none !important;
|
|
}
|
|
|
|
.pan-gif {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pan-img {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.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>
|