LaiToolManagementSystem/config/defaultSettings.ts

45 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-10-13 19:49:48 +08:00
import { ProLayoutProps } from '@ant-design/pro-components';
/**
* @name
*/
const Settings: ProLayoutProps & {
pwa?: boolean;
logo?: string;
} = {
"navTheme": "light",
"colorPrimary": "#1890ff",
"layout": "side",
"contentWidth": "Fluid",
"fixedHeader": true,
"fixSiderbar": true,
"pwa": true,
title: 'L M S',
"logo": "https://img.fy6b.com/2024/09/26/fdb290c4a29be.ico",
"token": {},
"splitMenus": false,
"siderMenuType": "sub",
"headerRender": false
}
// {
// navTheme: 'light',
// // 拂晓蓝
// colorPrimary: '#1890ff',
// layout: 'mix',
// contentWidth: 'Fluid',
// fixedHeader: false,
// fixSiderbar: true,
// colorWeak: false,
// title: 'LaiTool Management System13',
// pwa: true,
// logo: 'https://img.fy6b.com/2024/09/26/fdb290c4a29be.ico',
// iconfontUrl: '',
// token: {
// // 参见ts声明demo 见文档通过token 修改样式
// //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
// },
// };
export default Settings;