|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
<div class="alarmBox" :class="alarmList?.length ? 'notEmpty' : ''">
|
|
|
<div
|
|
|
- :class="`${index < 6 ? item.class + ' alarmItem animate__animated' : ''}`"
|
|
|
+ :class="`${index < $store.state.alarmShowNumber ? item.class + ' alarmItem animate__animated' : ''}`"
|
|
|
v-for="(item, index) in alarmList"
|
|
|
:key="index"
|
|
|
>
|
|
|
- <template v-if="index < 6">
|
|
|
+ <template v-if="index < $store.state.alarmShowNumber">
|
|
|
<div class="alarmTitle">{{ item.wpName }} {{ item.code }}</div>
|
|
|
<div class="alarmContent">
|
|
|
<div class="contentItem" @click="goToAlertDescPage(item)">
|
|
@@ -39,7 +39,8 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { confirmAlart, getAlartConfig } from "@api/api.js";
|
|
|
+import { confirmAlart, getAlartConfig, alarm_history } from "@api/api.js";
|
|
|
+import dayJs from "dayjs";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -50,6 +51,32 @@ export default {
|
|
|
ws: null,
|
|
|
timeConnect: 0,
|
|
|
limitConnect: 5,
|
|
|
+ requestAlarmHistoryParams: [
|
|
|
+ {
|
|
|
+ alarmType: "booststation",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "inverter",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "windturbine",
|
|
|
+ deviceType: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "custom",
|
|
|
+ deviceType: "booststation",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "custom",
|
|
|
+ deviceType: "inverter",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ alarmType: "custom",
|
|
|
+ deviceType: "windturbine",
|
|
|
+ },
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
|
|
@@ -57,9 +84,21 @@ export default {
|
|
|
getAlartConfig()
|
|
|
.then((res) => {
|
|
|
this.alarmConfigArray = res.data;
|
|
|
- this.webSocketInit(
|
|
|
- `ws://10.81.3.154:6014/websocket/${this.$store.state.user.userId}`
|
|
|
- );
|
|
|
+ let requestResult = [];
|
|
|
+ this.requestAlarmHistoryParams.forEach(({ alarmType, deviceType }) => {
|
|
|
+ requestResult.push(this.getAlarmHistory(alarmType, deviceType));
|
|
|
+ });
|
|
|
+
|
|
|
+ Promise.all(requestResult).then((promiseResult) => {
|
|
|
+ promiseResult.forEach(({ data }) => {
|
|
|
+ data?.ls?.forEach((ele) => {
|
|
|
+ this.pushALarmItem(ele);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ this.webSocketInit(
|
|
|
+ `ws://10.81.3.154:6014/websocket/${this.$store.state.user.userId}`
|
|
|
+ );
|
|
|
+ });
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.BASE.showMsg({
|
|
@@ -241,6 +280,24 @@ export default {
|
|
|
this.audioElement = null;
|
|
|
},
|
|
|
|
|
|
+ getAlarmHistory(alarmType, deviceType) {
|
|
|
+ return alarm_history({
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ alarmId: "",
|
|
|
+ alarmType,
|
|
|
+ deviceType,
|
|
|
+ stationid: "",
|
|
|
+ deviceid: "",
|
|
|
+ modelId: "",
|
|
|
+ components: "",
|
|
|
+ description: "",
|
|
|
+ begin: `${dayJs().format("YYYY-MM-DD")} 00:00:00`,
|
|
|
+ end: dayJs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ isclose: false,
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
webSocketInit(serveIP) {
|
|
|
if ("WebSocket" in window) {
|
|
|
this.ws = new WebSocket(serveIP);
|
|
@@ -291,7 +348,6 @@ export default {
|
|
|
tsName: new Date(alarmItem.ts).formatDate("MM-dd hh:mm:ss"),
|
|
|
fullTsName: new Date(alarmItem.ts).formatDate("yyyy-MM-dd hh:mm:ss"),
|
|
|
deviceId: alarmItem.deviceId,
|
|
|
- deviceType: alarmItem.deviceType,
|
|
|
faultCause: alarmItem.faultCause,
|
|
|
resolvent: alarmItem.resolvent,
|
|
|
characteristic: alarmItem.characteristic,
|
|
@@ -347,7 +403,6 @@ export default {
|
|
|
"$store.state.alarmResetFlg"() {
|
|
|
getAlartConfig()
|
|
|
.then((res) => {
|
|
|
- console.log(2222, res.data);
|
|
|
this.alarmConfigArray = res.data;
|
|
|
})
|
|
|
.catch(() => {
|