25 lines
589 B
JavaScript
25 lines
589 B
JavaScript
|
|
const Layout = () => import('@/layout/index.vue')
|
||
|
|
|
||
|
|
export default {
|
||
|
|
path: '/statistic',
|
||
|
|
component: Layout,
|
||
|
|
name: 'statistic',
|
||
|
|
redirect: '/statistic/s-index',
|
||
|
|
meta: {
|
||
|
|
auth: "statistic",
|
||
|
|
title: '统计分析',
|
||
|
|
icon: 'point',
|
||
|
|
},
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 's-index',
|
||
|
|
name: 's-index',
|
||
|
|
component: () => import('@/views/statistic/index.vue'),
|
||
|
|
meta: {
|
||
|
|
auth: "statistic.index",
|
||
|
|
title: '统计分析',
|
||
|
|
sidebar: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|