v3.8.1发布,上传前端代码

This commit is contained in:
JEECG
2025-06-25 16:04:02 +08:00
parent 3d414aaec8
commit 0148f45979
120 changed files with 4783 additions and 486 deletions

View File

@@ -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';
}

View File

@@ -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;