12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { ProLayoutProps } from '@ant-design/pro-components';
-
- const Settings: ProLayoutProps & {
- pwa?: boolean;
- logo?: string;
- } = {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- title: '中泽官网后台',
- navTheme: 'light',
- colorPrimary: '#00D3A1',
- layout: 'side',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- splitMenus: false,
- pwa: true,
- logo: '/login/logo.png',
- token: {},
- siderMenuType: 'sub',
- };
- export default Settings;
|