86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame^] | 1 | import { ProLayoutProps } from '@ant-design/pro-components'; |
| 2 | |
| 3 | /** |
| 4 | * @name |
| 5 | */ |
| 6 | const Settings: ProLayoutProps & { |
| 7 | pwa?: boolean; |
| 8 | logo?: string; |
| 9 | } = { |
| 10 | navTheme: 'light', |
| 11 | // 拂晓蓝 |
| 12 | colorPrimary: '#1890ff', |
| 13 | layout: 'mix', |
| 14 | contentWidth: 'Fluid', |
| 15 | fixedHeader: false, |
| 16 | fixSiderbar: 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 | }; |
| 27 | |
| 28 | export default Settings; |