mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-07 20:57:45 +00:00
v3.7.2 版本代码合并
This commit is contained in:
10
jeecgboot-vue3/types/config.d.ts
vendored
10
jeecgboot-vue3/types/config.d.ts
vendored
@@ -160,6 +160,11 @@ export interface GlobConfig {
|
||||
shortName: string;
|
||||
// 短标题
|
||||
shortTitle: string;
|
||||
|
||||
// 【JEECG作为乾坤子应用】是否以乾坤子应用模式启动
|
||||
isQiankunMicro: boolean;
|
||||
// 【JEECG作为乾坤子应用】乾坤子应用入口
|
||||
qiankunMicroAppEntry?: string;
|
||||
}
|
||||
export interface GlobEnvConfig {
|
||||
// Site title
|
||||
@@ -182,4 +187,9 @@ export interface GlobEnvConfig {
|
||||
VITE_GLOB_UPLOAD_URL?: string;
|
||||
// view url
|
||||
VITE_GLOB_ONLINE_VIEW_URL?: string;
|
||||
|
||||
// 【JEECG作为乾坤子应用】填写后将作为乾坤子应用启动,主应用注册时AppName需保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_NAME?: string;
|
||||
// 【JEECG作为乾坤子应用】作为乾坤子应用启动时必填,需与qiankun主应用注册子应用时填写的 entry 保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_ENTRY?: string;
|
||||
}
|
||||
|
4
jeecgboot-vue3/types/global.d.ts
vendored
4
jeecgboot-vue3/types/global.d.ts
vendored
@@ -59,6 +59,10 @@ declare global {
|
||||
VITE_USE_CDN: boolean;
|
||||
VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none';
|
||||
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean;
|
||||
// 【JEECG作为乾坤子应用】乾坤子应用名,主应用注册时AppName需保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_NAME?: string;
|
||||
// 【JEECG作为乾坤子应用】非必填,需与qiankun主应用注册子应用时填写的 entry 保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_ENTRY?: string;
|
||||
}
|
||||
|
||||
declare function parseInt(s: string | number, radix?: number): number;
|
||||
|
10
jeecgboot-vue3/types/main.d.ts
vendored
Normal file
10
jeecgboot-vue3/types/main.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// 应用参数
|
||||
export type MainAppProps = {
|
||||
container?: HTMLElement;
|
||||
// 隐藏侧边栏(菜单)
|
||||
hideSider?: boolean;
|
||||
// 隐藏顶部
|
||||
hideHeader?: boolean;
|
||||
// 隐藏 多Tab 切换
|
||||
hideMultiTabs?: boolean;
|
||||
}
|
Reference in New Issue
Block a user