Ver código fonte

添加自定义报警路由

shilin 3 anos atrás
pai
commit
fe3463f964
1 arquivos alterados com 24 adições e 0 exclusões
  1. 24 0
      src/router/index.js

+ 24 - 0
src/router/index.js

@@ -750,6 +750,30 @@ const routes = [{
         component: () =>
             import ( /* webpackChunkName: "historysearch" */ "../views/report/xnyrb.vue"),
     },
+     // 报警中心-升压站报警
+     {
+        path: "/alarmCenter/boosterAlarm",
+        name: "boosterAlarm",
+        component: () => import("../views/alarmCenter/boosterAlarm.vue")
+    },
+    // 报警中心-SCADA报警
+    {
+        path: "/alarmCenter/scadaAlarm",
+        name: "scadaAlarm",
+        component: () => import("../views/alarmCenter/scadaAlarm.vue")
+    },
+    // 报警中心-自定义报警
+    {
+        path: "/alarmCenter/customAlarm",
+        name: "customAlarm",
+        component: () => import("../views/alarmCenter/customAlarm.vue")
+    },
+    // 报警中心-自定义报警统计
+    {
+        path: "/alarmCenter/customStatistics",
+        name: "customStatistics",
+        component: () => import("../views/alarmCenter/customStatistics.vue")
+    },
 ]
 const router = createRouter({
   history: createWebHashHistory(),