Yansen 2 gadus atpakaļ
vecāks
revīzija
a38b7e5db2
2 mainītis faili ar 16 papildinājumiem un 2 dzēšanām
  1. 8
    2
      config/routes.js
  2. 8
    0
      src/pages/fillHistory/index.jsx

+ 8
- 2
config/routes.js Parādīt failu

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

+ 8
- 0
src/pages/fillHistory/index.jsx Parādīt failu

@@ -0,0 +1,8 @@
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
+}