chenrui vor 4 Jahren
Ursprung
Commit
5f687df28d

+ 38 - 0
src/config/router.config.js

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

+ 8 - 0
src/views/reportData/countryTypeProvinceSalesDetails/list.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>