settings.js 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. module.exports = {
  2. /**
  3. * 框架版本号
  4. */
  5. version: '3.8.1',
  6. title: 'ZrAdmin.NET-后台管理',
  7. /**
  8. * 主题颜色
  9. */
  10. theme: '#409EFF',
  11. /**
  12. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  13. */
  14. sideTheme: 'theme-light',
  15. /**
  16. * 显示是否系统布局配置
  17. */
  18. showSettings: false,
  19. /**
  20. * 是否显示顶部导航
  21. */
  22. topNav: false,
  23. /**
  24. * 是否显示 tagsView
  25. */
  26. tagsView: true,
  27. /**
  28. * 是否固定头部
  29. */
  30. fixedHeader: true,
  31. /**
  32. * 是否显示logo
  33. */
  34. sidebarLogo: true,
  35. /**
  36. * 是否显示动态标题
  37. */
  38. dynamicTitle: false,
  39. /**
  40. * @type {string | array} 'production' | ['production', 'development']
  41. * @description Need show err logs component.
  42. * The default is only used in the production env
  43. * If you want to also use it in dev, you can pass ['production', 'development']
  44. */
  45. errorLog: 'production',
  46. copyRight: 'Copyright ©2023 www.izhaorui.cn All Rights Reserved.'
  47. }