From 76a2cda5327be91041903b491ee729707e2004c1 Mon Sep 17 00:00:00 2001 From: hdy <1105738590@qq.com> Date: 星期三, 12 二月 2025 10:36:56 +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