statistics.js 625 Bytes
Newer Older
xulili's avatar
xulili committed
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
//  统计管理
export let statisticsRoute = [
{
    path: '/overview',
    name: '统计概览',
    component: () => import('@/page/statistics/overview'),
    meta:{
      showBreadcrumb:true,
      title:'统计概览',
    }
   },
   {
    path: '/interaction',
    name: '互动统计',
    component: () => import('@/page/statistics/interaction'),
    meta:{
      showBreadcrumb:true,
      title:'互动统计',
    }
   },
    {
      path: '/tend',
      name: '趋势分析',
      component: () => import('@/page/statistics/tend'),
      meta:{
      showBreadcrumb:true,
      title:'趋势分析',
    }
  }
]