API接口-authtoken、redis

This commit is contained in:
2026-03-19 18:07:18 +08:00
parent 019b536a89
commit 4f61c9d7fc
11 changed files with 303 additions and 3 deletions

View File

@@ -13,6 +13,7 @@ export const useAdminInfo = defineStore('adminInfo', {
token: '',
refresh_token: '',
super: false,
channel_id: 0,
}
},
actions: {

View File

@@ -113,6 +113,8 @@ export interface AdminInfo {
refresh_token: string
// 是否是 superAdmin用于判定是否显示终端按钮等不做任何权限判断
super: boolean
// 渠道ID创建子管理员时默认绑定
channel_id?: number
}
export interface UserInfo {