videoShopTour.js 3.87 KB
const videoShopTourRouterMap = {
  path: '/videoShopTour',
  meta: {
    permissionPath: 'videoShopTour'
  },
  component: () => import('@/views/VideoShopTour/'),
  children: [{
      name: 'deviceManagement',
      path: '/videoShopTour/deviceManagement',
      meta: {
        permissionPath: 'deviceManagement'
      },
      component: () => import('@/views/VideoShopTour/deviceManagement/'),
    },
    {
      path: '/videoShopTour/monitoringPointManagement',
      name: 'monitoringPointManagement',
      meta: {
        permissionPath: 'monitoringPointManagement'
      },
      component: () => import('@/views/VideoShopTour/monitoringPointManagement/'),
    },
    {
      path: '/videoShopTour/realTimeVideo',
      name: 'realTimeVideo',
      meta: {
        permissionPath: 'realTimeVideo'
      },
      component: () => import('@/views/VideoShopTour/realTimeVideo/'),
    },
    {
      path: 'systemSOPManagement',
      name: 'systemSOPManagement',
      meta: {
        permissionPath: 'systemSOPManagement'
      },
      component: () =>
        import('@/views/VideoShopTour/SystemSOPManagement/'),
    },
    {
      path: 'groupSOPManagement',
      name: 'groupSOPManagement',
      meta: {
        permissionPath: 'groupSOPManagement'
      },
      component: () =>
        import('@/views/VideoShopTour/GroupSOPManagement/'),
    },
    {
      path: 'remoteShopInspection',
      name: 'remoteShopInspection',
      meta: {
        permissionPath: 'remoteShopInspection'
      },
      component: () =>
        import('@/views/VideoShopTour/RemoteShopInspection/'),
    },
    {
      path: 'inspectionRecord',
      name: 'inspectionRecord',
      meta: {
        permissionPath: 'inspectionRecord'
      },
      component: () =>
        import('@/views/VideoShopTour/InspectionRecord/'),
    },
    {
      path: 'initiatedItem',
      name: 'initiatedItem',
      meta: {
        permissionPath: 'initiatedItem'
      },
      component: () =>
        import('@/views/VideoShopTour/InitiatedItem/'),
    },
    {
      path: 'pendingItem',
      name: 'pendingItem',
      meta: {
        permissionPath: 'pendingItem'
      },
      component: () =>
        import('@/views/VideoShopTour/PendingItem/'),
    },
    {
      path: 'presetPointManagement',
      name: 'presetPointManagement',
      meta: {
        permissionPath: 'presetPointManagement'
      },
      component: () =>
        import('@/views/VideoShopTour/PresetPointManagement/'),
    },
    {
      path: 'captureConfiguration',
      name: 'captureConfiguration',
      meta: {
        permissionPath: 'captureConfiguration'
      },
      component: () =>
        import('@/views/VideoShopTour/captureConfiguration/'),
    },
    {
      path: 'routineCheckTask',
      name: 'routineCheckTask',
      meta: {
        permissionPath: 'routineCheckTask'
      },
      component: () =>
        import('@/views/VideoShopTour/routineCheckTask/'),
    },
    {
      path: 'routineCheckRecord',
      name: 'routineCheckRecord',
      meta: {
        permissionPath: 'routineCheckRecord'
      },
      component: () =>
        import('@/views/VideoShopTour/routineCheckRecord/'),
    },
    {
      path: 'configurationCheckItem',
      name: 'configurationCheckItem',
      meta: {
        permissionPath: 'configurationCheckItem'
      },
      component: () =>
        import('@/views/VideoShopTour/configurationCheckItem/'),
    },
    {
      path: 'inspectionReport',
      name: 'inspectionReport',
      meta: {
        permissionPath: 'inspectionReport'
      },
      component: () =>
        import('@/views/VideoShopTour/inspectionReport/'),
    },
    {
      path: 'inspectionReportManual',
      name: 'inspectionReportManual',
      meta: {
        permissionPath: 'inspectionReportManual'
      },
      component: () =>
        import('@/views/VideoShopTour/inspectionReportManual/'),
    },
    
  ]
}

export default videoShopTourRouterMap