machineRouter.js
2.41 KB
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
export default [
{
path: '/pages/property/machineTypeTreeManage',
meta: { title: '设备类型' },
name: '/pages/property/machineTypeTreeManage',
component: () => import('@/views/machine/machineTypeTreeManageList.vue')
},
{
path: '/pages/property/equipmentAccount',
meta: { title: '设备台账' },
name: '/pages/property/equipmentAccount',
component: () => import('@/views/machine/equipmentAccountList.vue')
},
{
path: '/views/machine/addEquipmentAccount',
name: '/views/machine/addEquipmentAccount',
component: () => import('@/views/machine/addEquipmentAccountList.vue')
},
{
path: '/views/machine/editEquipmentAccount',
name: '/views/machine/editEquipmentAccount',
component: () => import('@/views/machine/editEquipmentAccountList.vue')
},
{
path: '/views/machine/equipmentAccountDetail',
name: '/views/machine/equipmentAccountDetail',
component: () => import('@/views/machine/equipmentAccountDetailList.vue')
},
{
path: '/pages/iot/adminChargeMachine',
meta: { title: '充电桩' },
name: '/pages/iot/adminChargeMachine',
component: () => import('@/views/iot/adminChargeMachineList.vue')
},
{
path: '/pages/property/machineTranslateManage',
meta: { title: '物联网同步' },
name: '/pages/property/machineTranslateManage',
component: () => import('@/views/machine/machineTranslateManageList.vue')
},
{
path: '/pages/machine/accessControlInout',
meta: { title: '开门记录' },
name: '/pages/machine/accessControlInout',
component: () => import('@/views/machine/accessControlInoutList.vue')
},
{
path: '/pages/print/machinePrinterManage',
meta: { title: '云打印机' },
name: '/pages/print/machinePrinterManage',
component: () => import('@/views/machine/machinePrinterManageList.vue')
},
{
path: '/pages/print/printerRule',
meta: { title: '云打印规则' },
name: '/pages/print/printerRule',
component: () => import('@/views/machine/printerRuleList.vue')
},
{
path: '/pages/property/videoControl',
meta: { title: '视频监控' },
name: '/pages/property/videoControl',
component: () => import('@/views/machine/videoControlList.vue')
},
]