You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
530 B
38 lines
530 B
4 years ago
|
import store from "../store/index.js"
|
||
|
|
||
|
/**
|
||
|
* 获取token
|
||
|
*/
|
||
|
export function getToken() {
|
||
|
|
||
|
return store.state.moduleAuth.token || ""
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 设置token
|
||
|
* @param {Object} token
|
||
|
*/
|
||
|
export function setToken(token) {
|
||
|
|
||
|
store.commit('setToken', token)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取刷新token
|
||
|
*/
|
||
|
export function getRefreshToken() {
|
||
|
|
||
|
return store.state.moduleAuth.refreshToken || ""
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 设置刷新token
|
||
|
* @param {Object} token
|
||
|
*/
|
||
|
export function setRefreshToken(refreshToken) {
|
||
|
|
||
|
store.commit('setRefreshToken', refreshToken)
|
||
|
}
|