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
47b20be3
Commit
47b20be3
authored
May 05, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into 'test'
token储存方式从cookie修改为sessionStorage See merge request
!53
parents
dfaf039b
1f72f026
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
auth.js
src/utils/auth.js
+3
-4
No files found.
src/utils/auth.js
View file @
47b20be3
import
Cookies
from
'js-cookie'
;
import
{
TOKEN_KEY
}
from
'@/config/index'
;
import
{
TOKEN_KEY
}
from
'@/config/index'
;
const
TokenKey
=
TOKEN_KEY
;
const
TokenKey
=
TOKEN_KEY
;
export
function
getToken
()
{
export
function
getToken
()
{
return
Cookies
.
get
(
TokenKey
);
return
sessionStorage
.
getItem
(
TokenKey
);
}
}
export
function
setToken
(
token
,
expires
)
{
export
function
setToken
(
token
,
expires
)
{
return
Cookies
.
set
(
TokenKey
,
token
,
{
expires
:
expires
}
);
return
sessionStorage
.
setItem
(
TokenKey
,
token
);
}
}
export
function
removeToken
()
{
export
function
removeToken
()
{
return
Cookies
.
remove
(
TOKEN_KEY
);
return
sessionStorage
.
removeItem
(
TOKEN_KEY
);
}
}
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