|
@@ -330,24 +330,28 @@ export default {
|
|
|
},
|
|
|
|
|
|
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,
|
|
|
- },
|
|
|
- 9000
|
|
|
- );
|
|
|
+ let params = {
|
|
|
+ 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,
|
|
|
+ };
|
|
|
+ if (
|
|
|
+ params.alarmType == "windturbine" ||
|
|
|
+ (params.alarmType == "custom" && params.deviceType == "windturbine")
|
|
|
+ ) {
|
|
|
+ params.stationid = "SXJ_KGDL_GJY_FDC_STA";
|
|
|
+ }
|
|
|
+ return alarm_history(params, 12000);
|
|
|
},
|
|
|
|
|
|
webSocketInit(serveIP) {
|
|
@@ -660,7 +664,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
-<style lang="scss" >
|
|
|
+<style lang="scss">
|
|
|
.currentRequestErrorNotification {
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
@@ -684,4 +688,4 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|