校园-江西科技师范大学-前端
shuishen
2023-12-14 e733164e1c779b3aef7245936b9daf7875bf791e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-08-29 09:04:54
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2022-08-30 14:19:11
 * @FilePath: \smart-campus\src\components\error-page\500.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/500.svg');"></div>
        <div class="content">
            <h1>500</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-500'
}
</script>
<style lang="scss" scoped>
@import './style.scss';
</style>