Browse Source

添加

添加
烬玊 1 year ago
parent
commit
12f25d425a
2 changed files with 20 additions and 0 deletions
  1. 5 0
      src/pages/index/layouts/indexLayout.vue
  2. 15 0
      src/router/index.js

+ 5 - 0
src/pages/index/layouts/indexLayout.vue

@@ -94,6 +94,11 @@ export default {
94 94
         {name: '停车时段分析', url: '/parking_period_analysis'},
95 95
         {name: '停车实况数据', url: '/parking_live'},
96 96
         {name: '泊位利用分析', url: '/berth_use'},
97
+        {name: '停车总分析', url: '/parking_analysis'},
98
+        {name: '停车时长分析', url: '/parking_time_analysis'},
99
+        {name: '临时停车统计', url: '/temp_parking-statistics'},
100
+        {name: '停车营收分析 ', url: '/parking-statistics'},
101
+        {name: '停车场泊位分析 ', url: '/parking_lot'},
97 102
       ]
98 103
     }
99 104
   },

+ 15 - 0
src/router/index.js

@@ -318,6 +318,21 @@ export default new Router({
318 318
           path: "/parking_lot",
319 319
           component: () => import("../pages/index/components/parking_lot.vue")
320 320
         },
321
+        {
322
+          name: "parking_period_analysis",
323
+          path: "/parking_period_analysis",
324
+          component: () => import("../pages/index/components/parking_period_analysis.vue")
325
+        },
326
+        {
327
+          name: "parking_live",
328
+          path: "/parking_live",
329
+          component: () => import("../pages/index/components/parking_live.vue")
330
+        },
331
+        {
332
+          name: "berth_use",
333
+          path: "/berth_use",
334
+          component: () => import("../pages/index/components/berth_use.vue")
335
+        },
321 336
       ]
322 337
     }
323 338
   ]