|
@@ -2,12 +2,19 @@
|
|
|
import axios from 'axios'
|
|
|
|
|
|
|
|
|
-import { userInfoStore } from '@/stores'
|
|
|
-import router from "@/router";
|
|
|
+import { menuStatusStore, userInfoStore } from '@/stores'
|
|
|
+
|
|
|
import { ElMessage } from 'element-plus';
|
|
|
|
|
|
+
|
|
|
+import router from '@/router';
|
|
|
+
|
|
|
|
|
|
const userInfo = userInfoStore()
|
|
|
+
|
|
|
+const menuStatus = menuStatusStore()
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -52,10 +59,17 @@ axios.interceptors.response.use(
|
|
|
|
|
|
if (response.data.code === 401) {
|
|
|
|
|
|
- router.replace({
|
|
|
- path: "/",
|
|
|
-
|
|
|
- });
|
|
|
+
|
|
|
+ ElMessage({
|
|
|
+ message: response.data.msg,
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ console.log(router)
|
|
|
+ router.push({ name: 'login' })
|
|
|
+ menuStatus.saveActiveIndex('6')
|
|
|
+
|
|
|
|
|
|
|
|
|
|