STBox.js 1.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
export let STBoxRoute = [
  //=======================================机顶盒管理 start ===================================//
  {
    path: '/STBbase',
    name: '机顶盒基础信息管理',
    component: () => import('@/page/STB/base/index'),
    meta: {
      showBreadcrumb: true,
      title: '机顶盒基础信息管理',
    }
  },
  {
    path: '/STBoperation',
    name: '机顶盒运维信息管理',
    component: () => import('@/page/STB/operation/index'),
    meta: {
      showBreadcrumb: true,
      title: '机顶盒运维信息管理',
    }
  },
  {
    path: '/interactive',
    name: '互动内容',
乐宝呗666's avatar
乐宝呗666 committed
24
    component: () => import('@/page/STB/interactive/index'),
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
    meta: {
      showBreadcrumb: true,
      title: '互动内容',
    }
  },
  {
    path: '/appversion',
    name: 'app版本管理',
    component: () => import('@/page/STB/appversion/index'),
    meta: {
      showBreadcrumb: true,
      title: 'app版本管理',
    }
  },
  {
    path: '/pagecustom',
    name: 'app界面自定义',
    component: () => import('@/page/STB/pageCustom/index'),
    meta: {
      showBreadcrumb: true,
      title: 'app界面自定义',
    }
  },
  //=======================================机顶盒管理 end ===================================//
]