| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
 | | import { RouteRecordRaw } from 'vue-router' |  |   |  | const needToBeDealtWith: Array<RouteRecordRaw> = [ |  |     { |  |         path: '/needToBeDealtWith', |  |         name: 'needToBeDealtWith', |  |         redirect: '/needToBeDealtWith/issueOperation', |  |         component: () => import('@/views/children.vue'), |  |         children: [ |  |             { |  |                 path: '/needToBeDealtWith/issueOperation', |  |                 name: 'issueOperation', |  |                 meta: { |  |                     title: '出库操作', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/exWarehouse.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/warehousing', |  |                 name: 'warehousing', |  |                 meta: { |  |                     title: '入库操作', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/warehousing.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/outbound', |  |                 name: 'outbound', |  |                 meta: { |  |                     title: '新增出库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/outbound.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/addWarehousing', |  |                 name: 'addWarehousing', |  |                 meta: { |  |                     title: '新增入库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/addWarehousing.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/codeScanningWarehousing', |  |                 name: 'codeScanningWarehousing', |  |                 meta: { |  |                     title: '扫码入库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/codeScanningWarehousing.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/adjustReceipt', |  |                 name: 'adjustReceipt', |  |                 meta: { |  |                     title: '调整入库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/adjustReceipt.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/transfer', |  |                 name: 'transfer', |  |                 meta: { |  |                     title: '新建转库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/transfer.vue') |  |             }, |  |             { |  |                 path: '/needToBeDealtWith/scanning', |  |                 name: 'scanning', |  |                 meta: { |  |                     title: '扫码转库', |  |                     keepAlive: false |  |                 }, |  |                 component: () => import('@/views/needToBeDealtWith/scanning.vue') |  |             } |  |         ] |  |     } |  | ] |  |   |  | export default needToBeDealtWith | 
 |