|
@@ -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);
|