From d61ada7b575417f00438ca2df140870249fca721 Mon Sep 17 00:00:00 2001
From: hdy <1105738590@qq.com>
Date: 星期二, 25 三月 2025 19:25:06 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 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