Files
RuoYi-Vue3-Mirror/src/settings.js
T

58 lines
908 B
JavaScript
Raw Normal View History

2021-11-30 09:55:37 +08:00
export default {
/**
* 网页标题
*/
title: import.meta.env.VITE_APP_TITLE,
2025-05-15 10:01:04 +08:00
2021-11-30 09:55:37 +08:00
/**
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
*/
sideTheme: 'theme-dark',
2025-05-15 10:01:04 +08:00
2021-11-30 09:55:37 +08:00
/**
* 是否系统布局配置
*/
2023-09-01 08:44:35 +08:00
showSettings: true,
2021-11-30 09:55:37 +08:00
/**
2025-12-16 11:41:45 +08:00
* 菜单导航模式 1、纯左侧 2、混合(左侧+顶部) 3、纯顶部
2021-11-30 09:55:37 +08:00
*/
2025-12-16 11:41:45 +08:00
navType: 1,
2021-11-30 09:55:37 +08:00
/**
* 是否显示 tagsView
*/
tagsView: true,
2025-05-23 14:57:04 +08:00
/**
* 显示页签图标
*/
tagsIcon: false,
2021-11-30 09:55:37 +08:00
/**
* 是否固定头部
*/
2025-12-18 09:03:24 +08:00
fixedHeader: true,
2021-11-30 09:55:37 +08:00
/**
* 是否显示logo
*/
sidebarLogo: true,
/**
* 是否显示动态标题
*/
2025-05-24 14:25:13 +08:00
dynamicTitle: false,
/**
* 是否显示底部版权
*/
footerVisible: false,
/**
* 底部版权文本内容
*/
footerContent: 'Copyright © 2018-2025 RuoYi. All Rights Reserved.'
2021-11-30 09:55:37 +08:00
}
2025-05-24 14:25:13 +08:00