Files
fe_service_ebtp_frontend/config/defaultSettings.ts

26 lines
479 B
TypeScript
Raw Permalink Normal View History

2020-12-23 11:14:35 +08:00
import { Settings as ProSettings } from '@ant-design/pro-layout';
type DefaultSettings = ProSettings & {
pwa: boolean;
};
const proSettings: DefaultSettings = {
navTheme: 'light',
2025-06-12 17:19:52 +08:00
primaryColor: '#014F8F',
2020-12-23 11:14:35 +08:00
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
menu: {
locale: true,
},
2021-01-16 11:29:42 +08:00
title: '招投标系统',
2020-12-23 11:14:35 +08:00
pwa: false,
iconfontUrl: '',
};
export type { DefaultSettings };
export default proSettings;