mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat(projects): 主题配置:页面功能和页面显示
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import type { ThemeSettings } from '@/interface';
|
||||
import { EnumAnimate } from '@/enum';
|
||||
|
||||
const themeColorList = [
|
||||
'#409EFF',
|
||||
@ -36,7 +37,6 @@ const themeSettings: ThemeSettings = {
|
||||
theme: 'light'
|
||||
},
|
||||
menuStyle: {
|
||||
collapsed: false,
|
||||
width: 200,
|
||||
collapsedWidth: 64,
|
||||
fixed: true,
|
||||
@ -58,7 +58,15 @@ const themeSettings: ThemeSettings = {
|
||||
},
|
||||
pageStyle: {
|
||||
animate: true,
|
||||
animateType: 'zoom-fade'
|
||||
animateType: 'zoom-fade',
|
||||
animateTypeList: [
|
||||
{ value: 'zoom-fade', label: EnumAnimate['zoom-fade'] },
|
||||
{ value: 'zoom-out', label: EnumAnimate['zoom-out'] },
|
||||
{ value: 'fade-slide', label: EnumAnimate['fade-slide'] },
|
||||
{ value: 'fade', label: EnumAnimate.fade },
|
||||
{ value: 'fade-bottom', label: EnumAnimate['fade-bottom'] },
|
||||
{ value: 'fade-scale', label: EnumAnimate['fade-scale'] }
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user