settings.js 796 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. title: '若依管理系统',
  3. /**
  4. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  5. */
  6. sideTheme: 'theme-dark',
  7. /**
  8. * 是否系统布局配置
  9. */
  10. showSettings: false,
  11. /**
  12. * 是否显示顶部导航
  13. */
  14. topNav: false,
  15. /**
  16. * 是否显示 tagsView
  17. */
  18. tagsView: true,
  19. /**
  20. * 是否固定头部
  21. */
  22. fixedHeader: false,
  23. /**
  24. * 是否显示logo
  25. */
  26. sidebarLogo: true,
  27. /**
  28. * @type {string | array} 'production' | ['production', 'development']
  29. * @description Need show err logs component.
  30. * The default is only used in the production env
  31. * If you want to also use it in dev, you can pass ['production', 'development']
  32. */
  33. errorLog: 'production'
  34. }