defaultSettings.ts 515 B

12345678910111213141516171819202122232425
  1. import { Settings as LayoutSettings } from '@ant-design/pro-layout';
  2. const Settings: LayoutSettings & {
  3. pwa?: boolean;
  4. logo?: string;
  5. } = {
  6. logo: 'http://ss.jishutao.com/portal/1.2.10/img/ico_logo.png',
  7. title: '科德管理系统',
  8. navTheme: 'realDark',
  9. primaryColor: '#1890ff',
  10. layout: 'side',
  11. contentWidth: 'Fluid',
  12. fixedHeader: false,
  13. fixSiderbar: true,
  14. pwa: false,
  15. iconfontUrl: '',
  16. menu: {
  17. locale: false,
  18. },
  19. headerHeight: 48,
  20. splitMenus: false,
  21. };
  22. export default Settings;