From 5c4c78563bc55ac7a18e029a211f4a6be14b047a Mon Sep 17 00:00:00 2001 From: hdy <1105738590@qq.com> Date: 星期二, 18 三月 2025 14:23:03 +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