yangyin
2024-05-20 4871d8eaa2f06e5a044ea0435e8e2b962358e384
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<template>
    <div class="error layout-padding">
        <div class="layout-padding-auto layout-padding-view">
            <div class="error-flex">
                <div class="left">
                    <div class="left-item">
                        <div class="left-item-animation left-item-num">401</div>
                        <div class="left-item-animation left-item-title">{{ $t('message.noAccess.accessTitle') }}</div>
                        <div class="left-item-animation left-item-msg">{{ $t('message.noAccess.accessMsg') }}</div>
                        <div class="left-item-animation left-item-btn">
                            <el-button type="primary" size="default" round @click="onSetAuth">{{ $t('message.noAccess.accessBtn') }}</el-button>
                        </div>
                    </div>
                </div>
                <div class="right">
                    <img
                        src="https://img-blog.csdnimg.cn/3333f265772a4fa89287993500ecbf96.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBAbHl0LXRvcA==,size_16,color_FFFFFF,t_70,g_se,x_16"
                    />
                </div>
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts" name="noPower">
import { clearAccessTokens } from '/@/utils/request';
import { Session } from '/@/utils/storage';
 
const onSetAuth = () => {
    // https://gitee.com/lyt-top/vue-next-admin/issues/I5C3JS
    // 清除缓存/token等
    clearAccessTokens();
    // 使用 reload 时,不需要调用 resetRoute() 重置路由
    window.location.reload();
};
</script>
 
<style scoped lang="scss">
.error {
    height: 100%;
    .error-flex {
        margin: auto;
        display: flex;
        height: 350px;
        width: 900px;
        .left {
            flex: 1;
            height: 100%;
            align-items: center;
            display: flex;
            .left-item {
                .left-item-animation {
                    opacity: 0;
                    animation-name: error-num;
                    animation-duration: 0.5s;
                    animation-fill-mode: forwards;
                }
                .left-item-num {
                    color: var(--el-color-info);
                    font-size: 55px;
                }
                .left-item-title {
                    font-size: 20px;
                    color: var(--el-text-color-primary);
                    margin: 15px 0 5px 0;
                    animation-delay: 0.1s;
                }
                .left-item-msg {
                    color: var(--el-text-color-secondary);
                    font-size: 12px;
                    margin-bottom: 30px;
                    animation-delay: 0.2s;
                }
                .left-item-btn {
                    animation-delay: 0.2s;
                }
            }
        }
        .right {
            flex: 1;
            opacity: 0;
            animation-name: error-img;
            animation-duration: 2s;
            animation-fill-mode: forwards;
            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}
</style>