HW 4 years ago
parent
commit
7073f82bd6
3 changed files with 22 additions and 10 deletions
  1. 11 3
      config/config.ts
  2. 10 7
      config/defaultSettings.ts
  3. 1 0
      package.json

+ 11 - 3
config/config.ts

@@ -3,19 +3,22 @@ import { defineConfig } from 'umi';
 import defaultSettings from './defaultSettings';
 import proxy from './proxy';
 import routes from './routes';
+import darkTheme from '@ant-design/dark-theme';
 
 const { REACT_APP_ENV } = process.env;
 
 export default defineConfig({
   hash: true,
-  antd: {},
+  antd: {
+    // dark: true,// 暗黑模式
+    compact: true, // 紧凑模式
+  },
   dva: {
     hmr: true,
   },
   layout: {
     name: '科德管理系统',
     locale: false,
-    disableMobile: false,
     siderWidth: 208,
     ...defaultSettings,
   },
@@ -36,7 +39,12 @@ export default defineConfig({
   routes,
   // Theme for antd: https://ant.design/docs/react/customize-theme-cn
   theme: {
-    'primary-color': defaultSettings.primaryColor,
+    ...darkTheme,
+    // black: '#f00',//内容区背景颜色
+    // 'popover-background': '#ff0',//侧边栏背景颜色
+    // 'component-background': '#fff',//内容容器(比如搜索栏)背景颜色
+    // 'table-header-bg': '#fff',//表格头部颜色
+    'primary-color': defaultSettings.primaryColor, //主题颜色
   },
   esbuild: {},
   title: false,

+ 10 - 7
config/defaultSettings.ts

@@ -4,18 +4,21 @@ const Settings: LayoutSettings & {
   pwa?: boolean;
   logo?: string;
 } = {
-  navTheme: 'light',
-  // 拂晓蓝
-  primaryColor: '#1890ff',
-  layout: 'mix',
+  logo: 'http://ss.jishutao.com/portal/1.2.10/img/ico_logo.png',
+  title: '科德管理系统',
+  navTheme: 'realDark',
+  primaryColor: '#52C41A',
+  layout: 'side',
   contentWidth: 'Fluid',
   fixedHeader: false,
   fixSiderbar: true,
-  colorWeak: false,
-  title: '科德管理系统',
   pwa: false,
-  logo: 'http://ss.jishutao.com/portal/1.2.10/img/ico_logo.png',
   iconfontUrl: '',
+  menu: {
+    locale: false,
+  },
+  headerHeight: 48,
+  splitMenus: false,
 };
 
 export default Settings;

+ 1 - 0
package.json

@@ -46,6 +46,7 @@
   ],
   "dependencies": {
     "@ant-design/compatible": "^1.0.8",
+    "@ant-design/dark-theme": "^2.0.2",
     "@ant-design/icons": "^4.0.0",
     "@ant-design/pro-descriptions": "^1.0.19",
     "@ant-design/pro-form": "^1.3.0",