Newer
Older
smartKitchenFront / src / router / modules / operationManagement.js
liuyangyingjie on 31 Oct 2022 942 bytes feat(修改问题,添加注释): 整体提交
/* Layout */
import Layout from '@/layout/Layout'

export const operationManagement = [{
  path: 'operationManagement',
  component: Layout,
  redirect: '/exampleTable', // 重定向
  name: 'OperationManagement',
  alwaysShow: true,
  meta: {
    title: '运营管理',
    icon: '运营管理' // 图标
  },
  children: [
    {
      path: '/retailersList',
      name: 'RetailersList',
      component: () => import('@/views/operation/retailerList'), //重定向的组件位置
      meta: {title: '电商运营', icon: ''}
    },
    {
      path: '/watchList',
      name: 'WatchList',
      component: () => import('@/views/operation/watchList'), //重定向的组件位置
      meta: {title: '表具运营', icon: ''}
    },
    {
      path: '/alarmList',
      name: 'AlarmList',
      component: () => import('@/views/operation/alarmList'), //重定向的组件位置
      meta: {title: '报警器运营', icon: ''}
    }
  ]
}]