v3.9.0 里程碑版本发布

This commit is contained in:
JEECG
2025-11-26 11:25:35 +08:00
parent 1f73837b7d
commit 9919ae2bc5
380 changed files with 11450 additions and 4555 deletions

View File

@ -1,9 +1,9 @@
import { generate } from '@ant-design/colors';
import setting from '/@/settings/projectSetting';
export const primaryColor = '#1890FF';
export const darkMode = 'light';
// 代码逻辑说明: 【JHHB-579】去掉写死的主题色根据导航栏模式确定主题色
export const primaryColor = setting.themeColor;
export const darkMode = setting.themeMode;
type Fn = (...arg: any) => any;
type GenerateTheme = 'default' | 'dark';