34 lines
751 B
TypeScript
34 lines
751 B
TypeScript
/*
|
|
* @version: V1.0.0
|
|
* @Date: 2023-12-28 11:28:34
|
|
* @LastEditors: lzq
|
|
* @LastEditTime: 2023-12-29 15:41:41
|
|
* @company: 睿展数据
|
|
* @FilePath: \salpa-web\config\defaultSettings.ts
|
|
* @Descripttion:
|
|
*/
|
|
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
|
|
|
|
const Settings: LayoutSettings & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
tabsLayout?: boolean;
|
|
} = {
|
|
navTheme: 'light',
|
|
headerTheme: 'light',
|
|
primaryColor: '#2B50C4',
|
|
layout: 'top',
|
|
splitMenus: true,
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: true,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: 'Salpa',
|
|
pwa: false,
|
|
logo: 'https://gw.alipayobjects.com/zos/rmsportal/樽海鞘_图案.svg',
|
|
iconfontUrl: '',
|
|
tabsLayout: true,
|
|
};
|
|
|
|
export default Settings;
|