无人机管理后台前端(已迁走)
linwe
2024-09-20 2d542d5cf6c1a70d93abbbb75125b810cc904160
设置token 过期时间为7天
1 files modified
5 ■■■■ changed files
src/utils/auth.js 5 ●●●● patch | view | raw | blame | history
src/utils/auth.js
@@ -10,7 +10,10 @@
}
export function setToken(token) {
  return Cookies.set(TokenKey, token);
    return Cookies.set(TokenKey, token, {
        expires: 7,
        path: '/'
    });
}
export function getRefreshToken() {