<!--
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2022-08-29 09:04:54
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2023-08-08 11:50:48
|
* @FilePath: \sd-jg-school-web\src\components\error-page\403.vue
|
* @Description:
|
*
|
* Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
|
-->
|
<template>
|
<div class="error-page">
|
<div class="img" style=" background-image: url('/changjing/img/bg/403.svg');"></div>
|
<div class="content">
|
<h1>403</h1>
|
<div class="desc">抱歉,你无权访问该页面</div>
|
<div class="actions">
|
<router-link :to="{ path: '/' }">
|
<el-button type="primary">返回首页</el-button>
|
</router-link>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
name: 'error-403'
|
}
|
</script>
|
<style lang="scss" scoped>
|
@import './style.scss';
|
</style>
|