From 4def9962bb5984279e373c13022856420398737b Mon Sep 17 00:00:00 2001 From: chenglong <418351270@qq.com> Date: 星期二, 17 十二月 2024 14:21:43 +0800 Subject: [PATCH] 接口 --- billion-ui/src/utils/auth.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/billion-ui/src/utils/auth.js b/billion-ui/src/utils/auth.js index 08a43d6..f15d648 100644 --- a/billion-ui/src/utils/auth.js +++ b/billion-ui/src/utils/auth.js @@ -3,13 +3,13 @@ const TokenKey = 'Admin-Token' export function getToken() { - return Cookies.get(TokenKey) + return localStorage.getItem(TokenKey) } export function setToken(token) { - return Cookies.set(TokenKey, token) + return localStorage.setItem(TokenKey, token) } export function removeToken() { - return Cookies.remove(TokenKey) + return localStorage.removeItem(TokenKey) } -- Gitblit v1.9.3