|
@@ -158,6 +158,72 @@ const router = new VueRouter({
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/report',
|
|
|
+ name: 'report',
|
|
|
+ meta: {breadcrumb: '数据报表'},
|
|
|
+ component: () => import('@/components/report/report.vue'),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/report/table',
|
|
|
+ name: 'reportTable',
|
|
|
+ meta: {breadcrumb: '报表'},
|
|
|
+ component: () => import('@/components/report/reportTable.vue'),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/report/table/custom',
|
|
|
+ name: 'reportTableCustom',
|
|
|
+ meta: {breadcrumb: '定制化消费报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableCustom.vue')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/table/life',
|
|
|
+ name: 'reportTableLife',
|
|
|
+ meta: {breadcrumb: '智享生活报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableLife.vue')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/table/work',
|
|
|
+ name: 'reportTableWork',
|
|
|
+ meta: {breadcrumb: '智慧办公报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableWork.vue')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/table/carbon',
|
|
|
+ name: 'reportTableCarbon',
|
|
|
+ meta: {breadcrumb: '数智双碳报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableCarbon.vue')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/table/operation',
|
|
|
+ name: 'reportTableOperation',
|
|
|
+ meta: {breadcrumb: '智慧运营报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableOperation.vue')
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/table/reportTableSecurity',
|
|
|
+ name: 'reportTableSecurity',
|
|
|
+ meta: {breadcrumb: '智慧安防报表'},
|
|
|
+ component: () => import('@/components/report/table/reportTableSecurity.vue')
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/report/data',
|
|
|
+ name: 'reportData',
|
|
|
+ meta: {breadcrumb: '报告'},
|
|
|
+ component: () => import('@/components/report/reportData.vue'),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/report/data/restaurant',
|
|
|
+ name: 'reportDataRestaurant',
|
|
|
+ meta: {breadcrumb: '餐厅消费报告'},
|
|
|
+ component: () => import('@/components/report/table/reportDataRestaurant.vue')
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
{
|
|
|
path: '/security',
|
|
|
name: 'security',
|