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
965bdc99
Commit
965bdc99
authored
Feb 19, 2022
by
若依
Committed by
Gitee
Feb 19, 2022
Browse files
Options
Browse Files
Download
Plain Diff
!431 修改登录超时刷新页面跳转登录页面还提示重新登录问题
Merge pull request !431 from 也曾为你、像超人/master
parents
d734bfc3
e7931380
Changes
2
Show 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 @
965bdc99
...
...
@@ -4,6 +4,7 @@ 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
})
...
...
@@ -19,8 +20,10 @@ router.beforeEach((to, from, next) => {
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
)
// 动态添加可访问路由表
...
...
ruoyi-ui/src/utils/request.js
View file @
965bdc99
...
...
@@ -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
'
;
}
})
}).
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