|
@@ -88,6 +88,10 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import {
|
|
|
+ alarm_history,
|
|
|
+ fetchStationListAll,
|
|
|
+} from "@/api/zhbj/index.js";
|
|
|
// 导入header.vue文件
|
|
|
import alarmBadge from "@/components/alarm-badge/index.vue";
|
|
|
import Menu from "@/views/layout/Menu.vue";
|
|
@@ -126,6 +130,30 @@ export default {
|
|
|
fontsize: "16px",
|
|
|
transform: "scaleY(1) scaleX(1) translate(-50%, -50%)",
|
|
|
},
|
|
|
+ alarmConfigArray: [],
|
|
|
+ //请求参数
|
|
|
+ requestAlarmHistoryParams: [
|
|
|
+ {
|
|
|
+ alarmType: "booststation",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "inverter",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "windturbine",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "custom",
|
|
|
+ deviceType: "inverter",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "custom",
|
|
|
+ deviceType: "windturbine",
|
|
|
+ },
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -139,8 +167,63 @@ export default {
|
|
|
return this.$store.state?.menuData?.length;
|
|
|
},
|
|
|
},
|
|
|
- created() {
|
|
|
-
|
|
|
+ async created() {
|
|
|
+ await this.initWebSocket();
|
|
|
+ this.getAlarmConfig();
|
|
|
+ this.x = 80;
|
|
|
+ this.y = 80;
|
|
|
+ let requestResult = [];
|
|
|
+ this.requestAlarmHistoryParams.forEach(({ alarmType, deviceType }) => {
|
|
|
+ requestResult.push(this.getAlarmHistory(alarmType, deviceType));
|
|
|
+ });
|
|
|
+
|
|
|
+ Promise.all(requestResult)
|
|
|
+ .then((promiseResult) => {
|
|
|
+ this.alarmList = [];
|
|
|
+ promiseResult.forEach(({ data }) => {
|
|
|
+ data?.ls?.forEach((ele) => {
|
|
|
+ this.pushALarmItem(ele);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ this.dialogList.sort((a, b) => {
|
|
|
+ return b.ts - a.ts;
|
|
|
+ });
|
|
|
+ this.realList.sort((a, b) => {
|
|
|
+ return b.ts - a.ts;
|
|
|
+ });
|
|
|
+ this.$store.commit("changeAlarmlist", this.alarmList);
|
|
|
+ this.$store.commit("setWarning", this.dialogList);
|
|
|
+ this.$store.commit("setWarningList", this.realList);
|
|
|
+ // if (!this.socketLeaveFlag) {
|
|
|
+ // // 没有离开——重连
|
|
|
+ // // websocket重连
|
|
|
+ // this.socketReconnect1();
|
|
|
+ // }
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ requestResult.forEach((ele, index) => {
|
|
|
+ ele
|
|
|
+ .then(({ data }) => {
|
|
|
+ data?.ls?.forEach((ele) => {
|
|
|
+ this.pushALarmItem(ele);
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ ElNotification({
|
|
|
+ type: "error",
|
|
|
+ title: "查询历史未处理报警请求出错!",
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ message: `<div class="currentRequestErrorNotification">
|
|
|
+ <p><span>主要参数:</p>
|
|
|
+ <p style="color:var(--el-color-primary)"><span class="errorTitle">alarmType:</span><span class="errorDesc">"${this.requestAlarmHistoryParams[index].alarmType}"</span></p>
|
|
|
+ <p style="color:var(--el-color-primary)"><span class="errorTitle">deviceType:</span><span class="errorDesc">"${this.requestAlarmHistoryParams[index].deviceType}"</span></p>
|
|
|
+ <p style="color:var(--el-color-danger)"><span class="errorTitle">错误正文:</span><span class="errorDesc">${error}</span></p>
|
|
|
+ </div>`,
|
|
|
+ });
|
|
|
+ throw error;
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
mounted() {
|
|
|
let that = this;
|
|
@@ -154,6 +237,253 @@ export default {
|
|
|
console.log("离开标记", this.socketLeaveFlag);
|
|
|
},
|
|
|
methods: {
|
|
|
+ //获取报警配置
|
|
|
+ getAlarmConfig() {
|
|
|
+ if (localStorage.getItem("alarmConfigArray")) {
|
|
|
+ this.alarmConfigArray = JSON.parse(
|
|
|
+ localStorage.getItem("alarmConfigArray")
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ this.alarmConfigArray = [
|
|
|
+ {
|
|
|
+ id: "1",
|
|
|
+ alarmLevel: 1,
|
|
|
+ isAlart: false,
|
|
|
+ isAlarmSound: false,
|
|
|
+ isContinuousAlarm: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "2",
|
|
|
+ alarmLevel: 2,
|
|
|
+ isAlart: false,
|
|
|
+ isAlarmSound: false,
|
|
|
+ isContinuousAlarm: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "3",
|
|
|
+ alarmLevel: 3,
|
|
|
+ isAlart: false,
|
|
|
+ isAlarmSound: false,
|
|
|
+ isContinuousAlarm: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "4",
|
|
|
+ alarmLevel: 4,
|
|
|
+ isAlart: true,
|
|
|
+ isAlarmSound: true,
|
|
|
+ isContinuousAlarm: false,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "5",
|
|
|
+ alarmLevel: 5,
|
|
|
+ isAlart: true,
|
|
|
+ isAlarmSound: true,
|
|
|
+ isContinuousAlarm: true,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ localStorage.setItem(
|
|
|
+ "alarmConfigArray",
|
|
|
+ JSON.stringify(this.alarmConfigArray)
|
|
|
+ );
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //查历史报警
|
|
|
+ getAlarmHistory(alarmType, deviceType) {
|
|
|
+ let params = {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 50,
|
|
|
+ alarmId: "",
|
|
|
+ alarmType,
|
|
|
+ deviceType,
|
|
|
+ stationid: "",
|
|
|
+ deviceid: "",
|
|
|
+ modelId: "",
|
|
|
+ components: "",
|
|
|
+ description: "",
|
|
|
+ isclose: false,
|
|
|
+ // begin: dayjs().add(-1, "hour").format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ // end: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ begin: `${dayjs().add(-1, "hour").format("YYYY-MM-DD")} 00:00:00`,
|
|
|
+ end: `${dayjs().format("YYYY-MM-DD")} 23:59:59`,
|
|
|
+ };
|
|
|
+ if (params.alarmType == "windturbine") {
|
|
|
+ params.stationid = "";
|
|
|
+ } else if (params.alarmType == "inverter") {
|
|
|
+ params.stationid = "";
|
|
|
+ }
|
|
|
+ return alarm_history(params, 12000);
|
|
|
+ },
|
|
|
+ pushALarmItem(alarmItem, type) {
|
|
|
+ const configItem = this.getConfigItem(alarmItem.rank);
|
|
|
+ const alarmOption = {
|
|
|
+ id: alarmItem.id ? alarmItem.id : alarmItem.tbname,
|
|
|
+ lv: alarmItem.rank,
|
|
|
+ modelId: alarmItem.modelId,
|
|
|
+ lvName: this.getLvName(alarmItem),
|
|
|
+ rank: alarmItem.rank,
|
|
|
+ confirmed: alarmItem.confirmed,
|
|
|
+ class: `animate__bounceInRight lv${alarmItem.rank}`,
|
|
|
+ deviceId: alarmItem.deviceId,
|
|
|
+ faultCause: alarmItem.faultCause,
|
|
|
+ resolvent: alarmItem.resolvent,
|
|
|
+ characteristic: alarmItem.characteristic,
|
|
|
+ code: alarmItem.code,
|
|
|
+ wpName: alarmItem.stationName
|
|
|
+ ? alarmItem.stationName
|
|
|
+ : alarmItem.wpName,
|
|
|
+ stationId: alarmItem.stationId ? alarmItem.stationId : alarmItem.wpId,
|
|
|
+ isClose: alarmItem.closeTime ? true : alarmItem.endts ? true : false,
|
|
|
+ isCloseName: alarmItem.closeTime
|
|
|
+ ? "已解除"
|
|
|
+ : alarmItem.endts
|
|
|
+ ? "已解除"
|
|
|
+ : "未解除",
|
|
|
+ alarmId: alarmItem.alarmId,
|
|
|
+ alarmType: alarmItem.alarmType,
|
|
|
+ alarmName: this.getAlarmName(alarmItem),
|
|
|
+ description: alarmItem.description,
|
|
|
+ deviceType: alarmItem.deviceType,
|
|
|
+ oval: alarmItem.oval,
|
|
|
+ triggerType: alarmItem.triggerType,
|
|
|
+ ts: alarmItem.ts
|
|
|
+ ? dayjs(alarmItem.ts).valueOf()
|
|
|
+ : dayjs(alarmItem.updateTime).valueOf(),
|
|
|
+ endts: alarmItem.endts
|
|
|
+ ? dayjs(alarmItem.endts).format("YYYY-MM-DD HH:mm:ss")
|
|
|
+ : null,
|
|
|
+ closeTime: alarmItem.closeTime
|
|
|
+ ? dayjs(alarmItem.closeTime).format("YYYY-MM-DD HH:mm:ss")
|
|
|
+ : null,
|
|
|
+ deviceName: alarmItem.deviceName
|
|
|
+ ? alarmItem.deviceName
|
|
|
+ : alarmItem.code,
|
|
|
+ tsName: alarmItem.ts
|
|
|
+ ? new Date(alarmItem.ts).formatDate("MM-dd hh:mm:ss")
|
|
|
+ : new Date(alarmItem.updateTime).formatDate("MM-dd hh:mm:ss"),
|
|
|
+ fullTsName: alarmItem.ts
|
|
|
+ ? new Date(alarmItem.ts).formatDate("yyyy-MM-dd hh:mm:ss")
|
|
|
+ : new Date(alarmItem.updateTime).formatDate("yyyy-MM-dd hh:mm:ss"),
|
|
|
+ };
|
|
|
+ if (
|
|
|
+ alarmOption.alarmType == "booststation" &&
|
|
|
+ alarmOption.deviceType != "custom"
|
|
|
+ ) {
|
|
|
+ if (
|
|
|
+ configItem.isAlarmSound ||
|
|
|
+ configItem.isAlart ||
|
|
|
+ configItem.isContinuousAlarm
|
|
|
+ ) {
|
|
|
+ let a = {};
|
|
|
+ a[`${alarmOption.stationId}`] =
|
|
|
+ alarmOption.closeTime || alarmOption.confirmed ? false : true;
|
|
|
+ this.alarmList.push(a);
|
|
|
+ this.alarmList = [
|
|
|
+ ...new Set(this.alarmList.map((t) => JSON.stringify(t))),
|
|
|
+ ].map((s) => JSON.parse(s));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (
|
|
|
+ configItem.isAlarmSound ||
|
|
|
+ configItem.isAlart ||
|
|
|
+ configItem.isContinuousAlarm
|
|
|
+ ) {
|
|
|
+ if (type && type == "ws") {
|
|
|
+ this.dialogList.unshift(alarmOption);
|
|
|
+ } else {
|
|
|
+ this.dialogList.push(alarmOption);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (type && type == "ws") {
|
|
|
+ this.realList.unshift(alarmOption);
|
|
|
+ } else {
|
|
|
+ this.realList.push(alarmOption);
|
|
|
+ }
|
|
|
+
|
|
|
+ // && alarmOption.deviceType != "custom"
|
|
|
+ this.playAudioEffect();
|
|
|
+ },
|
|
|
+
|
|
|
+ playAudioEffect() {
|
|
|
+ const lv1Config = this.getConfigItem(1);
|
|
|
+ let lv1Play = false;
|
|
|
+ if (lv1Config.isAlarmSound) {
|
|
|
+ lv1Play = this.dialogList.some((ele) => {
|
|
|
+ return ele.lv === 1 && !ele.confirm;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ const lv2Config = this.getConfigItem(2);
|
|
|
+ let lv2Play = false;
|
|
|
+ if (lv2Config.isAlarmSound) {
|
|
|
+ lv2Play = this.dialogList.some((ele) => {
|
|
|
+ return ele.lv === 2 && !ele.confirm;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ const lv3Config = this.getConfigItem(3);
|
|
|
+ let lv3Play = false;
|
|
|
+ if (lv3Config.isAlarmSound) {
|
|
|
+ lv3Play = this.dialogList.some((ele) => {
|
|
|
+ return ele.lv === 3 && !ele.confirm;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ const lv4Config = this.getConfigItem(4);
|
|
|
+ let lv4Play = false;
|
|
|
+ if (lv4Config.isAlarmSound) {
|
|
|
+ lv4Play = this.dialogList.some((ele) => {
|
|
|
+ return ele.lv === 4 && !ele.confirm;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ const lv5Config = this.getConfigItem(5);
|
|
|
+ let lv5Play = false;
|
|
|
+ if (lv5Config.isAlarmSound) {
|
|
|
+ lv5Play = this.dialogList.some((ele) => {
|
|
|
+ return ele.lv === 5 && !ele.confirm;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // console.log(lv1Play, lv2Play, lv3Play, lv4Play, lv5Play);
|
|
|
+ if (lv5Play && !this.seriousWarning) {
|
|
|
+ this.seriousWarning = true;
|
|
|
+ this.audioElement = new Audio();
|
|
|
+ this.audioElement.src = "./static/sound/lv5.mp3";
|
|
|
+ this.audioElement.loop = true;
|
|
|
+ false && this.audioElement?.play();
|
|
|
+ } else if (
|
|
|
+ (lv1Play || lv2Play || lv3Play || lv4Play) &&
|
|
|
+ !this.seriousWarning
|
|
|
+ ) {
|
|
|
+ this.audioElement = new Audio();
|
|
|
+ this.audioElement.src = "./static/sound/lv4.mp3";
|
|
|
+ this.audioElement.addEventListener("ended", () => {
|
|
|
+ this.audioElement?.removeEventListener(
|
|
|
+ "ended",
|
|
|
+ this.stopPlayAudioEffect
|
|
|
+ );
|
|
|
+ });
|
|
|
+ false && this.audioElement?.play();
|
|
|
+ } else {
|
|
|
+ if (!this.seriousWarning) {
|
|
|
+ this.stopPlayAudioEffect();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getConfigItem(lv) {
|
|
|
+ return (
|
|
|
+ this.alarmConfigArray.find((ele) => {
|
|
|
+ return ele.alarmLevel === lv;
|
|
|
+ }) || {}
|
|
|
+ );
|
|
|
+ },
|
|
|
+ stopPlayAudioEffect() {
|
|
|
+ this.seriousWarning = false;
|
|
|
+ if (this.audioElement) {
|
|
|
+ this.audioElement.pause();
|
|
|
+ this.audioElement.currentTime = 0;
|
|
|
+ this.audioElement.loop = false;
|
|
|
+ }
|
|
|
+ this.audioElement = null;
|
|
|
+ },
|
|
|
+ async initWebSocket() {
|
|
|
+ this.$ws.initWebSocket();
|
|
|
+ },
|
|
|
getScale() {
|
|
|
const w = window.innerWidth / this.style.width;
|
|
|
const h = window.innerHeight / this.style.height;
|