Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
e7931380
Commit
e7931380
authored
Feb 17, 2022
by
积硅步,至千里
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改登录超时刷新页面跳转登录页面还提示重新登录问题
parent
d734bfc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
62 deletions
+62
-62
ruoyi-ui/src/permission.js
ruoyi-ui/src/permission.js
+56
-53
ruoyi-ui/src/utils/request.js
ruoyi-ui/src/utils/request.js
+6
-9
No files found.
ruoyi-ui/src/permission.js
View file @
e7931380
import
router
from
'
./router
'
import
store
from
'
./store
'
import
{
Message
}
from
'
element-ui
'
import
NProgress
from
'
nprogress
'
import
'
nprogress/nprogress.css
'
import
{
getToken
}
from
'
@/utils/auth
'
NProgress
.
configure
({
showSpinner
:
false
})
const
whiteList
=
[
'
/login
'
,
'
/auth-redirect
'
,
'
/bind
'
,
'
/register
'
]
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
NProgress
.
start
()
if
(
getToken
())
{
to
.
meta
.
title
&&
store
.
dispatch
(
'
settings/setTitle
'
,
to
.
meta
.
title
)
/* has token*/
if
(
to
.
path
===
'
/login
'
)
{
next
({
path
:
'
/
'
})
NProgress
.
done
()
}
else
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
// 判断当前用户是否已拉取完user_info信息
store
.
dispatch
(
'
GetInfo
'
).
then
(()
=>
{
store
.
dispatch
(
'
GenerateRoutes
'
).
then
(
accessRoutes
=>
{
// 根据roles权限生成可访问的路由表
router
.
addRoutes
(
accessRoutes
)
// 动态添加可访问路由表
next
({
...
to
,
replace
:
true
})
// hack方法 确保addRoutes已完成
})
}).
catch
(
err
=>
{
store
.
dispatch
(
'
LogOut
'
).
then
(()
=>
{
Message
.
error
(
err
)
next
({
path
:
'
/
'
})
})
})
}
else
{
next
()
}
}
}
else
{
// 没有token
if
(
whiteList
.
indexOf
(
to
.
path
)
!==
-
1
)
{
// 在免登录白名单,直接进入
next
()
}
else
{
next
(
`/login?redirect=
${
to
.
fullPath
}
`
)
// 否则全部重定向到登录页
NProgress
.
done
()
}
}
})
router
.
afterEach
(()
=>
{
NProgress
.
done
()
})
import
router
from
'
./router
'
import
store
from
'
./store
'
import
{
Message
}
from
'
element-ui
'
import
NProgress
from
'
nprogress
'
import
'
nprogress/nprogress.css
'
import
{
getToken
}
from
'
@/utils/auth
'
import
{
isRelogin
}
from
'
@/utils/request
'
NProgress
.
configure
({
showSpinner
:
false
})
const
whiteList
=
[
'
/login
'
,
'
/auth-redirect
'
,
'
/bind
'
,
'
/register
'
]
router
.
beforeEach
((
to
,
from
,
next
)
=>
{
NProgress
.
start
()
if
(
getToken
())
{
to
.
meta
.
title
&&
store
.
dispatch
(
'
settings/setTitle
'
,
to
.
meta
.
title
)
/* has token*/
if
(
to
.
path
===
'
/login
'
)
{
next
({
path
:
'
/
'
})
NProgress
.
done
()
}
else
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
isRelogin
.
show
=
true
// 判断当前用户是否已拉取完user_info信息
store
.
dispatch
(
'
GetInfo
'
).
then
(()
=>
{
isRelogin
.
show
=
false
store
.
dispatch
(
'
GenerateRoutes
'
).
then
(
accessRoutes
=>
{
// 根据roles权限生成可访问的路由表
router
.
addRoutes
(
accessRoutes
)
// 动态添加可访问路由表
next
({
...
to
,
replace
:
true
})
// hack方法 确保addRoutes已完成
})
}).
catch
(
err
=>
{
store
.
dispatch
(
'
LogOut
'
).
then
(()
=>
{
Message
.
error
(
err
)
next
({
path
:
'
/
'
})
})
})
}
else
{
next
()
}
}
}
else
{
// 没有token
if
(
whiteList
.
indexOf
(
to
.
path
)
!==
-
1
)
{
// 在免登录白名单,直接进入
next
()
}
else
{
next
(
`/login?redirect=
${
to
.
fullPath
}
`
)
// 否则全部重定向到登录页
NProgress
.
done
()
}
}
})
router
.
afterEach
(()
=>
{
NProgress
.
done
()
})
ruoyi-ui/src/utils/request.js
View file @
e7931380
...
...
@@ -9,7 +9,7 @@ import { saveAs } from 'file-saver'
let
downloadLoadingInstance
;
// 是否显示重新登录
let
isReloginShow
;
export
let
isRelogin
=
{
show
:
false
}
;
axios
.
defaults
.
headers
[
'
Content-Type
'
]
=
'
application/json;charset=utf-8
'
// 创建axios实例
...
...
@@ -76,23 +76,20 @@ service.interceptors.response.use(res => {
return
res
.
data
}
if
(
code
===
401
)
{
if
(
!
isRelogin
S
how
)
{
isRelogin
S
how
=
true
;
if
(
!
isRelogin
.
s
how
)
{
isRelogin
.
s
how
=
true
;
MessageBox
.
confirm
(
'
登录状态已过期,您可以继续留在该页面,或者重新登录
'
,
'
系统提示
'
,
{
confirmButtonText
:
'
重新登录
'
,
cancelButtonText
:
'
取消
'
,
type
:
'
warning
'
}
).
then
(()
=>
{
isRelogin
S
how
=
false
;
isRelogin
.
s
how
=
false
;
store
.
dispatch
(
'
LogOut
'
).
then
(()
=>
{
// 如果是登录页面不需要重新加载
if
(
window
.
location
.
hash
.
indexOf
(
"
#/login
"
)
!=
0
)
{
location
.
href
=
'
/index
'
;
}
location
.
href
=
'
/index
'
;
})
}).
catch
(()
=>
{
isRelogin
S
how
=
false
;
isRelogin
.
s
how
=
false
;
});
}
return
Promise
.
reject
(
'
无效的会话,或者会话已过期,请重新登录。
'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment