同步gitee代码

This commit is contained in:
1024lab@sina.com
2021-08-10 14:13:34 +08:00
parent ca770b208d
commit 5593e3d2f8
82 changed files with 8248 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
import Cookies from 'js-cookie';
import config from '@/config';
const { cookieExpires } = config;
export const TOKEN_KEY = 'token';
export default {
setToken: token => {
Cookies.set(TOKEN_KEY, token, {
// token在Cookie中存储的天数默认1天
expires: cookieExpires || 7
});
},
getToken: () => {
const token = Cookies.get(TOKEN_KEY);
if (token) return token;
else return null;
},
clearToken: () => {
Cookies.remove(TOKEN_KEY);
}
};