Yansen 2 年前
父节点
当前提交
a38b7e5db2
共有 2 个文件被更改,包括 16 次插入2 次删除
  1. 8
    2
      config/routes.js
  2. 8
    0
      src/pages/fillHistory/index.jsx

+ 8
- 2
config/routes.js 查看文件

27
   {
27
   {
28
     path: '/invoiceFill',
28
     path: '/invoiceFill',
29
     name: '班次列表',
29
     name: '班次列表',
30
-    icon: 'SolutionOutlined',
30
+    icon: 'ClusterOutlined',
31
     component: '@/pages/invoiceFill',    
31
     component: '@/pages/invoiceFill',    
32
   },
32
   },
33
   {
33
   {
46
   {
46
   {
47
     path: '/nofill',
47
     path: '/nofill',
48
     name: '未填记录',
48
     name: '未填记录',
49
-    icon: 'FileSearchOutlined',
49
+    icon: 'PicRightOutlined',
50
     component: '@/pages/noFill',    
50
     component: '@/pages/noFill',    
51
   },
51
   },
52
+  {
53
+    path: '/fillHistory',
54
+    name: '填写历史',
55
+    icon: 'NodeIndexOutlined',
56
+    component: '@/pages/fillHistory',    
57
+  },
52
   {
58
   {
53
     path: '/',
59
     path: '/',
54
     redirect: '/welcome',
60
     redirect: '/welcome',

+ 8
- 0
src/pages/fillHistory/index.jsx 查看文件

1
+import React from 'react';
2
+import { PageHeaderWrapper } from '@ant-design/pro-layout';
3
+
4
+export default (props) => {
5
+  return (
6
+    <PageHeaderWrapper></PageHeaderWrapper>
7
+  )
8
+}