<!--
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2023-11-22 10:26:22
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2023-11-22 20:26:38
|
* @FilePath: \sd-jg-school-web-ksd\src\components\error-page\404.vue
|
* @Description:
|
*
|
* Copyright (c) 2023 by shuishen, All Rights Reserved.
|
-->
|
<template>
|
<div class="error-page">
|
<div class="img" style=" background-image: url('/changjing/img/bg/404.svg');"></div>
|
<div class="content">
|
<h1>404</h1>
|
<div class="desc">抱歉,你访问的页面不存在</div>
|
<div class="actions">
|
<el-button @click="goHome" type="primary">返回首页</el-button>
|
</div>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
name: 'error-404',
|
inject: ['reload'],
|
methods: {
|
goHome () {
|
this.$router.push({ path: '/pcLayout/default' })
|
this.reload()
|
}
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
@import './style.scss';
|
</style>
|