Browse Source

11月14日 库存扣减更新

XMLWAN 3 years ago
parent
commit
6e586c84cc
1 changed files with 43 additions and 0 deletions
  1. 43 0
      src/router/modules/supply.js

+ 43 - 0
src/router/modules/supply.js View File

@@ -0,0 +1,43 @@
1
+import Layout from '@/views/layout/Layout'
2
+
3
+export default {
4
+  path: '/supply',
5
+  component: Layout,
6
+  redirect: 'noredirect',
7
+  name: 'supplyManage',
8
+  alwaysShow: true,
9
+  meta: {
10
+    title: 'supplyManage',
11
+    icon: 'supply',
12
+    isChild: true
13
+  },
14
+  children: [
15
+    {
16
+      path: '/supply/query',
17
+      component: () => import('@/xt_pages/supply/supplyQuery'),
18
+      name: 'supplyQuery',
19
+      meta: { title: 'supplyQuery', noCache: true }
20
+    },
21
+    {
22
+      path: '/supply/add',
23
+      component: () => import('@/xt_pages/supply/components/addSupply'),
24
+      name: 'addSupply',
25
+      hidden: true,
26
+      is_menu: false,
27
+      meta: { title: 'addSupply', noCache: true },
28
+      isChild: true
29
+    },
30
+    {
31
+      path: 'purchase/order/query',
32
+      component: () => import('@/xt_pages/supply/purchaseOrderQuery'),
33
+      name: 'purchaseOrderQuery',
34
+      meta: { title: 'purchaseOrderQuery', noCache: true }
35
+    },
36
+    {
37
+      path: '/purchase/order/add',
38
+      component: () => import('@/xt_pages/supply/components/addPurchaseOrder'),
39
+      name: 'addPurchaseOrder',
40
+      meta: { title: 'addPurchaseOrder', noCache: true }
41
+    }
42
+  ]
43
+}