137 lines
3.0 KiB
TypeScript
137 lines
3.0 KiB
TypeScript
// 变量名对应含义请在 /stores/* 里边找
|
|
import type { RouteRecordRaw, RouteLocationNormalized } from 'vue-router'
|
|
|
|
export interface Layout {
|
|
showDrawer: boolean
|
|
shrink: boolean
|
|
layoutMode: string
|
|
mainAnimation: string
|
|
isDark: boolean
|
|
menuWidth: number
|
|
headerHeight: number
|
|
menuDefaultIcon: string
|
|
menuCollapse: boolean
|
|
menuUniqueOpened: boolean
|
|
menuShowTopBar: boolean
|
|
menuBackground: string[]
|
|
menuColor: string[]
|
|
menuActiveBackground: string[]
|
|
menuActiveColor: string[]
|
|
menuTopBarBackground: string[]
|
|
headerBarTabColor: string[]
|
|
headerBarBackground: string[]
|
|
headerBarHoverBackground: string[]
|
|
headerBarTabActiveBackground: string[]
|
|
headerBarTabActiveColor: string[]
|
|
}
|
|
|
|
export interface NavTabs {
|
|
activeIndex: number
|
|
activeRoute: RouteLocationNormalized | null
|
|
tabsView: RouteLocationNormalized[]
|
|
tabFullScreen: boolean
|
|
tabsViewRoutes: RouteRecordRaw[]
|
|
authNode: Map<string, string[]>
|
|
}
|
|
|
|
export interface MemberCenter {
|
|
open: boolean
|
|
layoutMode: string
|
|
activeRoute: RouteRecordRaw | RouteLocationNormalized | null
|
|
viewRoutes: RouteRecordRaw[]
|
|
showHeadline: boolean
|
|
authNode: Map<string, string[]>
|
|
shrink: boolean
|
|
menuExpand: boolean
|
|
navUserMenus: RouteRecordRaw[]
|
|
}
|
|
|
|
export interface AdminInfo {
|
|
id: number | string
|
|
username: string
|
|
nickname: string
|
|
avatar: string
|
|
last_login_time: string
|
|
token: string
|
|
refresh_token: string
|
|
super: boolean
|
|
orgid: number
|
|
}
|
|
|
|
export interface UserInfo {
|
|
id: number
|
|
username: string
|
|
nickname: string
|
|
email: string
|
|
mobile: string
|
|
gender: number
|
|
birthday: string
|
|
money: number
|
|
score: number
|
|
avatar: string
|
|
last_login_time: string
|
|
last_login_ip: string
|
|
join_time: string
|
|
motto: string
|
|
token: string
|
|
refresh_token: string
|
|
}
|
|
|
|
export interface TaskItem {
|
|
// 任务唯一标识
|
|
uuid: string
|
|
// 创建时间
|
|
createTime: string
|
|
// 状态
|
|
status: number
|
|
// 命令
|
|
command: string
|
|
// 命令执行日志
|
|
message: string[]
|
|
// 显示命令执行日志
|
|
showMessage: boolean
|
|
// 失败阻断后续命令执行
|
|
blockOnFailure: boolean
|
|
// 扩展信息,自动发送到后台
|
|
extend: string
|
|
// 执行结果回调
|
|
callback: Function
|
|
}
|
|
|
|
export interface Terminal {
|
|
show: boolean
|
|
showDot: boolean
|
|
taskList: TaskItem[]
|
|
packageManager: string
|
|
showPackageManagerDialog: boolean
|
|
showConfig: boolean
|
|
automaticCleanupTask: string
|
|
port: string
|
|
}
|
|
|
|
export interface SiteConfig {
|
|
siteName: string
|
|
recordNumber?: string
|
|
version: string
|
|
cdnUrl: string
|
|
apiUrl: string
|
|
upload: {
|
|
mode: string
|
|
maxsize: number
|
|
mimetype: string
|
|
savename: string
|
|
url?: string
|
|
params?: anyObj
|
|
}
|
|
headNav: RouteRecordRaw[]
|
|
initialize: boolean
|
|
userInitialize: boolean
|
|
}
|
|
|
|
export interface Enums {
|
|
data: {
|
|
[key: string]: { [k: string]: string }
|
|
}
|
|
keys: string[]
|
|
}
|