添加框架内容

This commit is contained in:
linxd
2025-06-16 16:22:26 +08:00
parent 1eabd737a6
commit c7b9ffac10
37 changed files with 2328 additions and 41 deletions

View File

@ -2,15 +2,15 @@ import { Settings as ProSettings } from '@ant-design/pro-layout';
type DefaultSettings = ProSettings & {
pwa: boolean;
headingColor:string;
textColor:string;
headingColor: string;
textColor: string;
};
const proSettings: DefaultSettings = {
navTheme: 'light',
primaryColor: 'rgb(0,79,142)',
headingColor:"#000",
textColor:"#000",
headingColor: "#000",
textColor: "#000",
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
@ -24,6 +24,15 @@ const proSettings: DefaultSettings = {
iconfontUrl: '',
};
export const antdTheme = {
// 更改antd 组件颜色
'table-header-bg': 'rgb(241,245,251)',
'table-row-hover-bg': 'rgb(241,245,251)',
'table-padding-vertical': '12px',
'table-header-color': 'rgb(143,146,153)'
}
export type { DefaultSettings };
export default proSettings;