Newer
Older
smartKitchenFront / src / router / modules / moveManagement.js
/* Layout */
import Layout from '@/layout/Layout'

export const moveManagement = [{
  path: 'moveManagement',
  component: Layout,
  redirect: '/exampleTable', // 重定向
  name: 'MoveManagement',
  alwaysShow: true,
  meta: {
    title: '移动端管理',
    icon: '移动端管理' // 图标
  },
  children: [
    {
      path: '/bannerConfig',
      name: 'BannerConfig',
      component: () => import('@/views/move/bannerConfig'), //重定向的组件位置
      meta: {title: 'banner配置', icon: ''}
    },
    {
      path: '/hotAndNews',
      name: 'HotAndNews',
      component: () => import('@/views/move/hotAndNews'), //重定向的组件位置
      meta: {title: '热门推荐与新闻配置', icon: ''}
    },
    {
      path: '/message',
      name: 'Message',
      component: () => import('@/views/move/message'), //重定向的组件位置
      meta: {title: '消息推送配置', icon: ''}
    }
    ,
    {
      path: '/addManagement',
      name: 'AddManagement',
      component: () => import('@/views/move/addManagement'), //重定向的组件位置
      meta: {title: '地址管理', icon: ''}
    }
    ,
    {
      path: '/branch',
      name: 'Branch',
      component: () => import('@/views/move/branch'), //重定向的组件位置
      meta: {title: '网点维护', icon: ''}
    },
    {
      path: '/attestation',
      name: 'Attestation',
      component: () => import('@/views/move/attestation'), //重定向的组件位置
      meta: {title: '实名认证管理', icon: ''}
    }
    // ,
    // {
    //   path: '/logManagement',
    //   name: 'LogManagement',
    //   component: () => import('@/views/move/logManagement'), //重定向的组件位置
    //   meta: { title: '日志管理', icon: '' }
    // }
  ]
}]