Blame view

src/router/machineRouter.js 2.08 KB
d68983e7   wuxw   保养功能开发完成
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
  export default [
      {
          path: '/pages/property/machineTypeTreeManage',
          name: '/pages/property/machineTypeTreeManage',
          component: () => import('@/views/machine/machineTypeTreeManageList.vue')
      },
      {
          path: '/pages/property/equipmentAccount',
          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',
          name: '/pages/iot/adminChargeMachine',
          component: () => import('@/views/iot/adminChargeMachineList.vue')
      },
      {
          path: '/pages/property/machineTranslateManage',
          name: '/pages/property/machineTranslateManage',
          component: () => import('@/views/machine/machineTranslateManageList.vue')
      },
      {
          path: '/pages/machine/accessControlInout',
          name: '/pages/machine/accessControlInout',
          component: () => import('@/views/machine/accessControlInoutList.vue')
      },
      {
          path: '/pages/print/machinePrinterManage',
          name: '/pages/print/machinePrinterManage',
          component: () => import('@/views/machine/machinePrinterManageList.vue')
      },
      {
          path: '/pages/print/printerRule',
          name: '/pages/print/printerRule',
          component: () => import('@/views/machine/printerRuleList.vue')
      },
f92fd6ac   wuxw   开发我的小区下的功能
52
53
54
55
56
      {
          path: '/pages/property/videoControl',
          name: '/pages/property/videoControl',
          component: () => import('@/views/machine/videoControlList.vue')
      },
d68983e7   wuxw   保养功能开发完成
57
  ]