12345678910111213141516171819202122232425262728293031323334 |
- import { ProLayoutProps } from '@ant-design/pro-components';
- const Settings: ProLayoutProps & {
- pwa?: boolean;
- logo?: string;
- } = {
- navTheme: 'light',
-
- colorPrimary: '#1890ff',
- layout: 'mix',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: '趣程素材库',
- pwa: true,
- logo: 'https://zx-material-center-test.oss-cn-hangzhou.aliyuncs.com/image/287CA9F756B94313AAD20672B5AED3F0.jpg',
- iconfontUrl: '',
- token: {
-
-
- },
- menu: {
- locale: true,
- },
- onMenuHeaderClick() {
- window.location.reload();
- },
- };
- export default Settings;
|