setting.config.js 1.81 KB
Newer Older
wb-ct393452's avatar
wb-ct393452 committed
1 2
//ts 此配置为系统默认设置。
const settingConfig = {
水落(YangLei)'s avatar
水落(YangLei) committed
3 4
    lang: 'zh_CN', //语言,可选 CN(简体)、HK(繁体)、US(英语),也可扩展其它语言
    fallbackLang: 'en_US',
wb-ct393452's avatar
wb-ct393452 committed
5 6
    theme: {
        //主题
水落(YangLei)'s avatar
水落(YangLei) committed
7 8 9 10 11
        color: '#3eaf7c', //主题色
        mode: 'dark', //主题模式 可选 dark、 light 和 night
        success: '#52c41a', //成功色
        warning: '#faad14', //警告色
        error: '#f5222f', //错误色
wb-ct393452's avatar
wb-ct393452 committed
12
    },
水落(YangLei)'s avatar
水落(YangLei) committed
13
    layout: 'side', //导航布局,可选 side 和 head,分别为侧边导航和顶部导航
wb-ct393452's avatar
wb-ct393452 committed
14 15 16
    fixedHeader: false, //固定头部状态栏,true:固定,false:不固定
    fixedSideBar: true, //固定侧边栏,true:固定,false:不固定
    fixedTabs: false, //固定页签头,true:固定,false:不固定
水落(YangLei)'s avatar
水落(YangLei) committed
17
    pageWidth: 'fixed', //内容区域宽度,fixed:固定宽度,fluid:流式宽度
wb-ct393452's avatar
wb-ct393452 committed
18 19 20
    multiPage: true, //多页签模式,true:开启,false:不开启
    cachePage: true, //是否缓存页面数据,仅多页签模式下生效,true 缓存, false 不缓存
    hideSetting: false, //隐藏设置抽屉,true:隐藏,false:不隐藏
水落(YangLei)'s avatar
水落(YangLei) committed
21 22
    systemCode: 'Karot', //系统编码
    systemName: 'Karot文档管理系统', //系统名称
wb-ct393452's avatar
wb-ct393452 committed
23 24 25 26 27 28
    asyncRoutes: false, //异步加载路由,true:开启,false:不开启
    showPageTitle: true, //是否显示页面标题(PageLayout 布局中的页面标题),true:显示,false:不显示
    filterMenu: true, //根据权限过滤菜单,true:过滤,false:不过滤
    animate: {
        //动画设置
        disabled: false, //禁用动画,true:禁用,false:启用
水落(YangLei)'s avatar
水落(YangLei) committed
29 30
        name: 'lightSpeed', //动画效果,支持的动画效果可参考 ./animate.config.js
        direction: 'Left', //动画方向,切换页面时动画的方向,参考 ./animate.config.js
wb-ct393452's avatar
wb-ct393452 committed
31 32 33 34
    },
};

module.exports = settingConfig;