浏览代码

报警联调

SunZehao 4 月之前
父节点
当前提交
9813e9682b
共有 2 个文件被更改,包括 51 次插入20 次删除
  1. 31 0
      src/App.vue
  2. 20 20
      src/router/index.js

+ 31 - 0
src/App.vue

@@ -102,6 +102,7 @@ import { getApiWeatherstation } from "@/api/monthlyPerformanceAnalysis";
 import { getAllStation } from "@/api/common.js";
 import SvgIcon from "@com/coms/icon/svg-icon.vue";
 import { GetDeviceTableData } from "@/api/zhbj/index.js";
+import { ElNotification } from "element-plus";
 import dayjs from "dayjs";
 import $ from "jquery";
 export default {
@@ -405,6 +406,36 @@ export default {
       //    && alarmOption.deviceType != "custom"
       this.playAudioEffect();
     },
+    getAlarmName(alarmItem) {
+      let alarmName = "";
+      if (alarmItem.deviceType === "booststation") {
+        alarmName = "升压站报警";
+      } else if (alarmItem.deviceType === "inverter") {
+        alarmName = "光伏报警";
+      } else if (alarmItem.deviceType === "windturbine") {
+        alarmName = "设备报警";
+      } else if (alarmItem.deviceType === "station") {
+        alarmName = "场站";
+      }
+
+      if (alarmItem.alarmType === "custom") {
+        alarmName = "自定义报警";
+      }
+      return alarmName;
+    },
+    getLvName(alarmItem) {
+      if (alarmItem.rank === 1) {
+        return "低级";
+      } else if (alarmItem.rank === 2) {
+        return "低中级";
+      } else if (alarmItem.rank === 3) {
+        return "中级";
+      } else if (alarmItem.rank === 4) {
+        return "中高级";
+      } else if (alarmItem.rank === 5) {
+        return "高级";
+      }
+    },
 
     playAudioEffect() {
       const lv1Config = this.getConfigItem(1);

+ 20 - 20
src/router/index.js

@@ -94,26 +94,26 @@ export const asyncRoutes = [
                             permissions: ["jn_safe_bjcx"],
                         },
                     },
-                    {
-                        path: "stopQuery", //停机查询
-                        name: "stopQuery",
-                        component: () => import("@/views/IntegratedAlarm/safe/stopQuery"),
-                        meta: {
-                            title: "停机查询",
-                            icon: "",
-                            permissions: ["jn_safe_tjcx"],
-                        },
-                    },
-                    {
-                        path: "dataSearch", //数据查询
-                        name: "dataSearch",
-                        component: () => import("@/views/IntegratedAlarm/safe/dataSearch"),
-                        meta: {
-                            title: "数据查询",
-                            icon: "",
-                            permissions: ["jn_safe_sjcx"],
-                        },
-                    },
+                    // {
+                    //     path: "stopQuery", //停机查询
+                    //     name: "stopQuery",
+                    //     component: () => import("@/views/IntegratedAlarm/safe/stopQuery"),
+                    //     meta: {
+                    //         title: "停机查询",
+                    //         icon: "",
+                    //         permissions: ["jn_safe_tjcx"],
+                    //     },
+                    // },
+                    // {
+                    //     path: "dataSearch", //数据查询
+                    //     name: "dataSearch",
+                    //     component: () => import("@/views/IntegratedAlarm/safe/dataSearch"),
+                    //     meta: {
+                    //         title: "数据查询",
+                    //         icon: "",
+                    //         permissions: ["jn_safe_sjcx"],
+                    //     },
+                    // },
                 ],
             },
             {