This commit is contained in:
2024-12-25 16:07:51 +08:00
parent e39ea741ea
commit 453208f593
28 changed files with 867 additions and 63 deletions

View File

@@ -124,6 +124,8 @@ export function removeToken() {
/** 格式化tokenjwt格式 */
export const formatToken = (token: string): string => {
console.log("token", token);
console.info("Bearer " + token);
return "Bearer " + token;
};