35 lines
813 B
TypeScript
35 lines
813 B
TypeScript
import { ProLayoutProps } from '@ant-design/pro-components';
|
|
|
|
/**
|
|
* @name
|
|
*/
|
|
const Settings: ProLayoutProps & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'light',
|
|
// 拂晓蓝
|
|
colorPrimary: '#1890ff',
|
|
// 嵌入第三方平台:侧栏布局,无顶栏
|
|
layout: 'side',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: '石河子智慧就业服务系统',
|
|
pwa: true,
|
|
logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
|
|
iconfontUrl: '',
|
|
token: {
|
|
sider: {
|
|
colorMenuBackground: '#fff',
|
|
colorBgMenuItemSelected: '#e6f4ff',
|
|
colorTextMenu: 'rgba(0, 0, 0, 0.88)',
|
|
colorTextMenuSelected: '#1890ff',
|
|
colorTextMenuItemHover: 'rgba(0, 0, 0, 0.88)',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default Settings;
|