中泽后台管理前端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

defaultSettings.ts 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { ProLayoutProps } from '@ant-design/pro-components';
  2. /**
  3. * @name
  4. */
  5. const Settings: ProLayoutProps & {
  6. pwa?: boolean;
  7. logo?: string;
  8. } = {
  9. // navTheme: 'light',
  10. // // 拂晓蓝
  11. // colorPrimary: '#1890ff',
  12. // layout: 'mix',
  13. // contentWidth: 'Fluid',
  14. // fixedHeader: false,
  15. // fixSiderbar: false,
  16. // splitMenus: true,
  17. // colorWeak: false,
  18. // title: 'Ant Design Pro',
  19. // pwa: true,
  20. // logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
  21. // iconfontUrl: '',
  22. // token: {
  23. // // 参见ts声明,demo 见文档,通过token 修改样式
  24. // //https://procomponents.ant.design/components/layout#%E9%80%9A%E8%BF%87-token-%E4%BF%AE%E6%94%B9%E6%A0%B7%E5%BC%8F
  25. // },
  26. title: '中泽集团官网后台管理平台',
  27. navTheme: 'light',
  28. colorPrimary: '#00D3A1',
  29. layout: 'side',
  30. contentWidth: 'Fluid',
  31. fixedHeader: false,
  32. fixSiderbar: true,
  33. splitMenus: false,
  34. pwa: true,
  35. logo: '/login/logo.png',
  36. token: {},
  37. siderMenuType: 'sub',
  38. };
  39. export default Settings;