|
@@ -1572,6 +1572,44 @@ export const asyncRouterMap = [
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
+
|
|
|
+ {
|
|
|
+ path: '/reportData',
|
|
|
+ redirect: '/reportData/countryTypeProvinceSalesDetails',
|
|
|
+ component: PageView,
|
|
|
+ meta: {
|
|
|
+ title: '报表',
|
|
|
+ icon: 'pushpin'
|
|
|
+
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/reportData/countryTypeProvinceSalesDetails',
|
|
|
+ redirect: '/reportData/countryTypeProvinceSalesDetails/list',
|
|
|
+ name: 'countryTypeProvinceSalesDetails',
|
|
|
+ component: RouteView,
|
|
|
+ meta: {
|
|
|
+ title: '全国各省品类实际销售明细',
|
|
|
+ icon: 'deployment-unit'
|
|
|
+
|
|
|
+ },
|
|
|
+ hideChildrenInMenu: true,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'list',
|
|
|
+ name: 'countryTypeProvinceSalesDetailsList',
|
|
|
+ component: () => import( '@/views/reportData/countryTypeProvinceSalesDetails/list.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '全国各省品类实际销售明细列表',
|
|
|
+ icon: 'deployment-unit',
|
|
|
+ hidden: true
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
|
|
|
{
|
|
|
path: '/auth',
|