mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-04 13:42:27 +08:00
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
export interface ProjectSettingState {
|
|
//导航模式
|
|
navMode: string;
|
|
//导航风格
|
|
navTheme: string;
|
|
//顶部设置
|
|
headerSetting: object;
|
|
//页脚
|
|
showFooter: boolean;
|
|
//菜单设置
|
|
menuSetting: object;
|
|
//多标签
|
|
multiTabsSetting: object;
|
|
//面包屑
|
|
crumbsSetting: object;
|
|
//权限模式
|
|
permissionMode: string;
|
|
}
|
|
|
|
export interface IBodySetting {
|
|
fixed: boolean;
|
|
}
|
|
|
|
export interface IHeaderSetting {
|
|
bgColor: string;
|
|
fixed: boolean;
|
|
isReload: boolean;
|
|
}
|
|
|
|
export interface IMenuSetting {
|
|
minMenuWidth: number;
|
|
menuWidth: number;
|
|
fixed: boolean;
|
|
mixMenu: boolean;
|
|
collapsed: boolean;
|
|
mobileWidth: number;
|
|
}
|
|
|
|
export interface ICrumbsSetting {
|
|
show: boolean;
|
|
showIcon: boolean;
|
|
}
|
|
|
|
export interface IMultiTabsSetting {
|
|
bgColor: string;
|
|
fixed: boolean;
|
|
show: boolean;
|
|
}
|
|
export interface GlobConfig {
|
|
title: string;
|
|
apiUrl: string;
|
|
shortName: string;
|
|
urlPrefix?: string;
|
|
uploadUrl?: string;
|
|
useMock: boolean;
|
|
fileUrl?: string;
|
|
loggerMock: boolean;
|
|
}
|
|
|
|
export interface GlobEnvConfig {
|
|
// 标题
|
|
VITE_GLOB_APP_TITLE: string;
|
|
// 接口地址
|
|
VITE_GLOB_API_URL: string;
|
|
// 接口前缀
|
|
VITE_GLOB_API_URL_PREFIX?: string;
|
|
// 网站别名
|
|
VITE_GLOB_APP_SHORT_NAME: string;
|
|
// 文件上传地址
|
|
VITE_GLOB_UPLOAD_URL?: string;
|
|
// 文件前缀地址
|
|
VITE_GLOB_FILE_URL?: string;
|
|
// 开启 mock
|
|
VITE_USE_MOCK: string;
|
|
// 是否开启控制台打印 mock 请求信息
|
|
VITE_LOGGER_MOCK: string;
|
|
}
|