|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="hc-body-loading" v-loading="loading" element-loading-text="授权登录中...">
|
|
|
- <div class="error-page" v-if="!isErrorShow">
|
|
|
+ <div class="error-page" v-if="isErrorShow">
|
|
|
<div class="img" :style="`background-image: url(${svg403});`"/>
|
|
|
<div class="content">
|
|
|
<h1>403</h1>
|
|
@@ -26,6 +26,8 @@ import {getObjNullValue} from "vue-utils-plus"
|
|
|
const router = useRouter()
|
|
|
const useRoutes = useRoute()
|
|
|
const useAppState = useAppStore()
|
|
|
+//先清理下缓存
|
|
|
+useAppState.clearStoreData()
|
|
|
|
|
|
//变量
|
|
|
const loading = ref(true)
|