diff --git a/src/router/index.js b/src/router/index.js
index 8d44c77..81749e4 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -29,7 +29,6 @@ function getQueryParams() {
return params
}
router.beforeEach((to, from, next) => {
-
let urlParams = getQueryParams()
if(urlParams.worktoken&&to.path=='/Hotline'){
console.log(store.state.app,"store.state.app.userInfo");
diff --git a/src/utils/request.js b/src/utils/request.js
index 57a7c25..b586ca6 100644
--- a/src/utils/request.js
+++ b/src/utils/request.js
@@ -52,7 +52,7 @@ service.interceptors.response.use(
let loginCode = [10007, 401, 10001, 10005, 10006]
if (loginCode.includes(res.code)) {
- if (store.state.app.userInfo.isRouterLoading) {
+ if (store.state.app.isRouterLoading) {
return
}else{
localStorage.removeItem('token_work')
diff --git a/src/views/Hotline/index.vue b/src/views/Hotline/index.vue
index 880bff0..f23b41b 100644
--- a/src/views/Hotline/index.vue
+++ b/src/views/Hotline/index.vue
@@ -6,10 +6,13 @@