jiangping
2023-08-21 2837bdd57f72e386bbf9a725e7b3a13e5eb9e930
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import { RouteRecordRaw } from 'vue-router'
 
const productionInspection: Array<RouteRecordRaw> = [
    {
        path: '/productionInspection',
        name: 'productionInspection',
        redirect: '/productionInspection/index',
        component: () => import('@/views/children.vue'),
        children: [
            {
                path: '/productionInspection/index',
                name: 'exWarehouse',
                meta: {
                    title: '品质检验记录',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/index.vue')
            },
            {
                path: '/productionInspection/details',
                name: 'details',
                meta: {
                    title: '检验详情',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/details.vue')
            },
            {
                path: '/productionInspection/test',
                name: 'test',
                meta: {
                    title: '品质检验',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/test.vue')
            },
            {
                path: '/productionInspection/finalInspection',
                name: 'finalInspection',
                meta: {
                    title: '品质终检',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/finalInspection.vue')
            },
            {
                path: '/productionInspection/finalInspectionRecord',
                name: 'finalInspectionRecord',
                meta: {
                    title: '品质终检记录',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/finalInspectionRecord.vue')
            },
            {
                path: '/productionInspection/finalInspectionDetails',
                name: 'finalInspectionDetails',
                meta: {
                    title: '终检详情',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/finalInspectionDetails.vue')
            },
            {
                path: '/productionInspection/equipmentInspection',
                name: 'equipmentInspection',
                meta: {
                    title: '设备巡检',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/equipmentInspection.vue')
            },
            {
                path: '/productionInspection/manualInspection',
                name: 'manualInspection',
                meta: {
                    title: '巡线',
                    keepAlive: true
                },
                component: () => import('@/views/productionInspection/manualInspection.vue')
            },
            {
                path: '/productionInspection/manualInspection1',
                name: 'manualInspection1',
                meta: {
                    title: '巡检',
                    keepAlive: true
                },
                component: () => import('@/views/productionInspection/manualInspection1.vue')
            },
            {
                path: '/productionInspection/manualInspection2',
                name: 'manualInspection2',
                meta: {
                    title: '完工检',
                    keepAlive: true
                },
                component: () => import('@/views/productionInspection/manualInspection2.vue')
            },
            {
                path: '/productionInspection/selectWorkOrder',
                name: 'selectWorkOrder',
                meta: {
                    title: '选择工单',
                    keepAlive: false
                },
                component: () => import('@/views/productionInspection/selectWorkOrder.vue')
            }
        ]
    }
]
 
export default productionInspection