mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-07 20:57:45 +00:00
v3.8.1发布,上传前端代码
This commit is contained in:
7
jeecgboot-vue3/types/config.d.ts
vendored
7
jeecgboot-vue3/types/config.d.ts
vendored
@@ -141,6 +141,7 @@ export interface ProjectConfig {
|
||||
closeMessageOnSwitch: boolean;
|
||||
// Whether to cancel the http request that has been sent but not responded when switching the interface.
|
||||
removeAllHttpPending: boolean;
|
||||
aiIconShow: boolean;
|
||||
}
|
||||
|
||||
export interface GlobConfig {
|
||||
@@ -162,6 +163,8 @@ export interface GlobConfig {
|
||||
shortName: string;
|
||||
// 短标题
|
||||
shortTitle: string;
|
||||
// 当前是否运行在 electron 平台
|
||||
isElectronPlatform: boolean;
|
||||
|
||||
// 【JEECG作为乾坤子应用】是否以乾坤子应用模式启动
|
||||
isQiankunMicro: boolean;
|
||||
@@ -196,4 +199,8 @@ export interface GlobEnvConfig {
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_NAME?: string;
|
||||
// 【JEECG作为乾坤子应用】作为乾坤子应用启动时必填,需与qiankun主应用注册子应用时填写的 entry 保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_ENTRY?: string;
|
||||
//在线文档编辑版本。可选属性:wps, onlyoffice
|
||||
VITE_GLOB_ONLINE_DOCUMENT_VERSION?: string;
|
||||
// 当前运行在什么平台
|
||||
VITE_GLOB_RUN_PLATFORM?: 'web' | 'electron';
|
||||
}
|
||||
|
4
jeecgboot-vue3/types/global.d.ts
vendored
4
jeecgboot-vue3/types/global.d.ts
vendored
@@ -17,7 +17,7 @@ declare global {
|
||||
|
||||
// vue
|
||||
declare type PropType<T> = VuePropType<T>;
|
||||
declare type VueNode = VNodeChild | JSX.Element;
|
||||
declare type VueNode = VNodeChild | JSX.Element | JSX.IntrinsicElements;
|
||||
|
||||
export type Writable<T> = {
|
||||
-readonly [P in keyof T]: T[P];
|
||||
@@ -63,6 +63,8 @@ declare global {
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_NAME?: string;
|
||||
// 【JEECG作为乾坤子应用】非必填,需与qiankun主应用注册子应用时填写的 entry 保持一致
|
||||
VITE_GLOB_QIANKUN_MICRO_APP_ENTRY?: string;
|
||||
// 当前运行在什么平台
|
||||
VITE_GLOB_RUN_PLATFORM?: 'web' | 'electron';
|
||||
}
|
||||
|
||||
declare function parseInt(s: string | number, radix?: number): number;
|
||||
|
Reference in New Issue
Block a user