胖子天骄的MES系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
507 B

  1. import { Settings as LayoutSettings } from '@ant-design/pro-components';
  2. /**
  3. * @name
  4. */
  5. const Settings: LayoutSettings & {
  6. pwa?: boolean;
  7. logo?: string;
  8. title?:any
  9. } = {
  10. navTheme: 'light',
  11. colorPrimary: '#13C2C2',
  12. layout: 'mix',
  13. contentWidth: 'Fluid',
  14. fixedHeader: false,
  15. fixSiderbar: true,
  16. colorWeak: false,
  17. title: "中控管理系统",
  18. menu: {
  19. locale: false, // 禁用多语言功能
  20. },
  21. pwa: false,
  22. splitMenus:false,
  23. iconfontUrl: '',
  24. };
  25. export default Settings;