ai-manus/chat-client/src/config/theme.config.js

47 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @description 导出主题配置,注意事项:此配置下的项修改后需清理浏览器缓存!!!
*/
module.exports = {
// 布局种类横向布局horizontal、纵向布局vertical、分栏布局column、综合布局comprehensive、常规布局common、浮动布局float
layout: 'hv',
// 主题名称默认blue-black、blue-white、green-black、green-white、渐变ocean、red-white、red-black
//从/library/styles/variables+background下匹配样式文件修改对应变量值
themeName: 'blue-tzl',
// 菜单背景 none、vab-background
background: 'none',
// 菜单宽度仅支持px建议大小266px、277px、288px其余尺寸会影响美观 ,另太小会自动隐藏标题
menuWidth: '230px',
// 分栏风格(仅针对分栏布局column时生效)横向风格horizontal、纵向风格vertical、卡片风格card、箭头风格arrow
columnStyle: 'card',
// 是否固定头部固定
fixedHeader: true,
// 是否开启顶部进度条
showProgressBar: true,
// 是否开启标签页
showTabs: true,
// 显示标签页时标签页样式卡片风格card、灵动风格smart、圆滑风格smooth
tabsBarStyle: 'smart',
// 是否标签页图标
showTabsIcon: true,
// 是否开启语言选择组件
showLanguage: true,
// 是否开启刷新组件
showRefresh: true,
// 是否开启搜索组件
showSearch: false,
// 是否开启主题组件
showTheme: false,
// 是否开启通知组件
showNotice: false,
// 是否开启全屏组件
showFullScreen: true,
// 是否开启右侧悬浮窗
showThemeSetting: false,
//纵向布局、常规布局、综合布局时是否默认收起左侧菜单(不支持分栏布局、横向布局)
foldSidebar: false,
// 是否开启页面动画
showPageTransition: true,
// 是否开启锁屏
showLock: true,
}