综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

settings.js 897B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * @Author: ysh
  3. * @Date: 2024-06-21 18:51:44
  4. * @LastEditors:
  5. * @LastEditTime: 2024-08-29 14:53:06
  6. */
  7. module.exports = {
  8. /**
  9. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  10. */
  11. sideTheme: 'theme-dark',
  12. /**
  13. * 是否系统布局配置
  14. */
  15. showSettings: false,
  16. /**
  17. * 是否显示顶部导航
  18. */
  19. topNav: false,
  20. /**
  21. * 是否显示 tagsView
  22. */
  23. tagsView: true,
  24. /**
  25. * 是否固定头部
  26. */
  27. fixedHeader: true,
  28. /**
  29. * 是否显示logo
  30. */
  31. sidebarLogo: true,
  32. /**
  33. * 是否显示动态标题
  34. */
  35. dynamicTitle: false,
  36. /**
  37. * @type {string | array} 'production' | ['production', 'development']
  38. * @description Need show err logs component.
  39. * The default is only used in the production env
  40. * If you want to also use it in dev, you can pass ['production', 'development']
  41. */
  42. errorLog: 'production'
  43. }