Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dcxy-manage-shell
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜雷
dcxy-manage-shell
Commits
025f177c
Commit
025f177c
authored
May 23, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
打印登出信息
parent
d15ea41f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
validate.js
src/api/validate.js
+6
-1
Api.js
src/lib/Api.js
+1
-1
index.js
src/store/modules/user/index.js
+1
-0
No files found.
src/api/validate.js
View file @
025f177c
...
...
@@ -17,8 +17,13 @@ export const validateCode = res => {
type
:
'warning'
,
}
).
then
(()
=>
{
store
.
dispatch
(
'FedLogOut'
).
then
(()
=>
{
store
.
dispatch
(
'FedLogOut'
)
.
then
(()
=>
{
location
.
reload
();
// 为了重新实例化vue-router对象 避免bug
})
.
catch
(
err
=>
{
console
.
error
(
'FedLogOutErr: '
,
err
);
});
});
return
Promise
.
reject
(
res
);
...
...
src/lib/Api.js
View file @
025f177c
...
...
@@ -24,10 +24,10 @@ const createBaseFetch = config => {
store
.
dispatch
(
'fetchStart'
,
notLoading
);
if
(
store
.
getters
.
token
)
{
conf
.
headers
=
{
...
conf
.
headers
,
reqSource
:
'pc'
,
token
:
store
.
getters
.
token
,
ip
:
ip
,
...
conf
.
headers
,
};
}
else
{
conf
.
headers
=
{
...
...
src/store/modules/user/index.js
View file @
025f177c
...
...
@@ -66,6 +66,7 @@ const actions = {
// 前端 登出
FedLogOut
({
commit
})
{
return
new
Promise
(
resolve
=>
{
console
.
debug
(
'in FedLogOut'
);
commit
(
SET_TOKEN
,
''
);
removeToken
();
resolve
();
...
...
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