Merge branch 'dev' into master-fetch-dev

This commit is contained in:
奔跑的面条
2023-03-16 20:02:18 +08:00
97 changed files with 1274 additions and 87 deletions
+4 -1
View File
@@ -64,10 +64,13 @@ export const chartColorsSearch = {
roma: ['#e01f54', '#5e4ea5', 'rgba(137, 52, 72, 0.3)', 'rgba(224, 31, 84, 0.5)', 'rgba(94, 78, 165, 0.5)'],
}
export type EchartsRenderer = 'svg' | 'canvas';
// 默认主题详细配置
type ThemeJsonType = typeof themeJson
export interface GlobalThemeJsonType extends Partial<ThemeJsonType> {
dataset?: any,
renderer?: EchartsRenderer,
[T:string]: any
}
export const globalThemeJson = {...themeJson, dataset: null,}
export const globalThemeJson = {...themeJson, dataset: null, renderer: 'svg' as const }
+1 -1
View File
@@ -44,7 +44,7 @@ export const asideCollapsedWidth = 60
export const maskClosable = false
// 全局边框圆角
export const borderRadius = '6px'
export const borderRadius = '4px'
// 轮播间隔
export const carouselInterval = 4000