Files
RuoYi-Vue-Mirror/ruoyi-ui/src/settings.js
T

62 lines
963 B
JavaScript
Raw Normal View History

2019-10-08 09:14:38 +08:00
module.exports = {
2025-05-15 08:52:28 +08:00
/**
* 网页标题
*/
title: process.env.VUE_APP_TITLE,
2020-12-07 14:13:02 +08:00
/**
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
*/
sideTheme: 'theme-dark',
2019-10-08 09:14:38 +08:00
/**
2025-05-23 14:56:38 +08:00
* 系统布局配置
2019-10-08 09:14:38 +08:00
*/
2025-05-09 13:45:39 +08:00
showSettings: true,
2019-10-08 09:14:38 +08:00
/**
2025-12-16 11:40:06 +08:00
* 菜单导航模式 1、纯左侧 2、混合(左侧+顶部) 3、纯顶部
*/
2025-12-16 11:40:06 +08:00
navType: 1,
2019-10-08 09:14:38 +08:00
/**
* 是否显示 tagsView
*/
tagsView: true,
2026-03-22 21:05:02 +08:00
/**
* 持久化标签页
*/
tagsViewPersist: false,
2025-05-23 14:56:38 +08:00
/**
* 显示页签图标
*/
tagsIcon: false,
2019-10-08 09:14:38 +08:00
/**
* 是否固定头部
*/
2025-12-18 09:03:05 +08:00
fixedHeader: true,
2019-10-08 09:14:38 +08:00
/**
* 是否显示logo
*/
sidebarLogo: true,
2021-06-10 18:05:27 +08:00
/**
* 是否显示动态标题
*/
2025-05-24 14:24:23 +08:00
dynamicTitle: false,
/**
* 是否显示底部版权
*/
footerVisible: false,
/**
* 底部版权文本内容
*/
2026-01-04 15:27:17 +08:00
footerContent: 'Copyright © 2018-2026 RuoYi. All Rights Reserved.'
2019-10-08 09:14:38 +08:00
}