Files
shgx_tz_mes_backend_sync/ZR.Vue/src/settings.js

51 lines
932 B
JavaScript
Raw Normal View History

2021-08-23 16:57:25 +08:00
module.exports = {
2021-11-20 15:39:01 +08:00
/**
* 框架版本号
*/
2021-11-28 18:50:04 +08:00
version: '3.7.0',
2021-12-10 08:29:11 +08:00
title: 'ZrAdmin.NET-管理系统',
2021-10-09 15:14:34 +08:00
/**
* 主题颜色
*/
2021-12-10 08:29:11 +08:00
theme: '#409EFF',
2021-09-29 15:57:56 +08:00
/**
* 侧边栏主题 深色主题theme-dark浅色主题theme-light
*/
2021-11-06 12:51:43 +08:00
sideTheme: 'theme-light',
2021-08-23 16:57:25 +08:00
/**
2021-09-29 15:57:56 +08:00
* 显示是否系统布局配置
2021-08-23 16:57:25 +08:00
*/
showSettings: false,
2021-11-06 12:51:43 +08:00
/**
* 是否显示顶部导航
*/
topNav: false,
2021-08-23 16:57:25 +08:00
/**
* 是否显示 tagsView
*/
tagsView: true,
/**
* 是否固定头部
*/
2021-09-26 15:04:59 +08:00
fixedHeader: true,
2021-08-23 16:57:25 +08:00
/**
* 是否显示logo
*/
sidebarLogo: true,
2021-12-10 12:03:32 +08:00
/**
* 是否显示动态标题
*/
dynamicTitle: false,
2021-08-23 16:57:25 +08:00
/**
* @type {string | array} 'production' | ['production', 'development']
* @description Need show err logs component.
* The default is only used in the production env
* If you want to also use it in dev, you can pass ['production', 'development']
*/
errorLog: 'production'
2021-11-06 12:51:43 +08:00
}