spring
2025-11-19 af4f45eaa2703ecf991bd10f07f6df179f2677d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const TOKEN_KEY = "app-token";
const USER_INFO_KEY = "user-info";
const DICT_KEY = "dict";
const TEAM_ID_KEY = "team-id";
import { type DictData } from "@/api/system/dict";
 
// 设置 token
export function setToken(token: string) {
  uni.setStorageSync(TOKEN_KEY, token);
}
 
// 获取 token
export function getToken(): string {
  return uni.getStorageSync(TOKEN_KEY) || "";
}
 
// 清除 token
export function clearToken() {
  uni.removeStorageSync(TOKEN_KEY);
}
 
// 设置用户信息
export function setUserInfo(userInfo: any) {
  uni.setStorageSync(USER_INFO_KEY, userInfo);
}
 
// 获取用户信息
export function getUserInfo(): any {
  return uni.getStorageSync(USER_INFO_KEY) || null;
}
 
// 清除用户信息
export function clearUserInfo() {
  uni.removeStorageSync(USER_INFO_KEY);
}
 
// 设置字典缓存
export function setDictCache(dict: Record<string, DictData[]>) {
  uni.setStorageSync(DICT_KEY, dict);
}
 
// 获取字典缓存
export function getDictCache(): Record<string, DictData[]> {
  return uni.getStorageSync(DICT_KEY) || {};
}
 
// 清除字典缓存
export function clearDictCache() {
  uni.removeStorageSync(DICT_KEY);
}
 
// 设置班组ID
export function setTeamId(teamId: string | number) {
  uni.setStorageSync(TEAM_ID_KEY, teamId);
}
 
// 获取班组ID
export function getTeamId(): string | number | null {
  return uni.getStorageSync(TEAM_ID_KEY) || null;
}
 
// 清除班组ID
export function clearTeamId() {
  uni.removeStorageSync(TEAM_ID_KEY);
}
 
// 清除所有缓存信息
export function clearAll() {
  clearToken();
  clearUserInfo();
  clearDictCache();
  clearTeamId();
}