mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-25 10:56:34 +08:00
45 lines
943 B
Vue
45 lines
943 B
Vue
<template>
|
||
<div class="go-error">
|
||
<div class="text-center">
|
||
<img src="~@/assets/images/exception/403.svg" alt="" />
|
||
</div>
|
||
<div class="text-center">
|
||
<h1 class="text-base text-gray-500">抱歉,你无权访问该页面</h1>
|
||
</div>
|
||
<n-button type="primary" @click="goHome">回到首页</n-button>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { PageEnum } from '@/enums/pageEnum'
|
||
import { routerTurnByName } from '@/utils'
|
||
function goHome() {
|
||
routerTurnByName(PageEnum.BASE_HOME_NAME)
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
@include go(error) {
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
width: 100vw;
|
||
height: 100vh;
|
||
overflow: hidden;
|
||
padding: 100px 0;
|
||
@include background-image('background-image');
|
||
.text-center {
|
||
h1 {
|
||
color: #666;
|
||
padding: 20px 0;
|
||
}
|
||
}
|
||
|
||
img {
|
||
width: 350px;
|
||
margin: 0 auto;
|
||
}
|
||
}
|
||
</style>
|