|
@@ -138,9 +138,8 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="btns">
|
|
|
- <el-button class="buttons" round size="mini" @click="getAlarmHistoryt"
|
|
|
- >查询</el-button
|
|
|
- >
|
|
|
+ <el-button class="buttons" round size="mini">查询</el-button>
|
|
|
+ <!-- @click="getAlarmHistoryt" -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
class="buttons"
|
|
@@ -150,14 +149,15 @@
|
|
|
>
|
|
|
导出</el-button
|
|
|
>
|
|
|
+ <!-- @click="export2Excel" -->
|
|
|
<el-button
|
|
|
class="buttons"
|
|
|
round
|
|
|
size="mini"
|
|
|
:disabled="!state.tableData?.length"
|
|
|
- @click="confirmItem(state.tableData)"
|
|
|
>确认本页</el-button
|
|
|
>
|
|
|
+ <!-- @click="confirmItem(state.tableData)" -->
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -220,12 +220,8 @@
|
|
|
align="center"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <el-button
|
|
|
- type="text"
|
|
|
- style="color: #05bb4c"
|
|
|
- @click="confirmItem([scope.row])"
|
|
|
- >确认本条</el-button
|
|
|
- >
|
|
|
+ <el-button type="text" style="color: #05bb4c">确认本条</el-button>
|
|
|
+ <!-- @click="confirmItem([scope.row])" -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
@@ -274,12 +270,8 @@
|
|
|
fixed="right"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <el-button
|
|
|
- type="text"
|
|
|
- style="color: #05bb4c"
|
|
|
- @click="confirmItem([scope.row])"
|
|
|
- >确认本条</el-button
|
|
|
- >
|
|
|
+ <el-button type="text" style="color: #05bb4c">确认本条</el-button>
|
|
|
+ <!-- @click="confirmItem([scope.row])" -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
@@ -306,6 +298,8 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup name="historyWarning">
|
|
|
+import { getStation } from "@/api/performance";
|
|
|
+import { getApiequipmentListByWp } from "@/api/monthlyPerformanceAnalysis.js";
|
|
|
import { watch, reactive, nextTick, computed, onMounted, ref } from "vue";
|
|
|
import { useRouter, useRoute } from "vue-router";
|
|
|
import BASE from "@/tools/basicTool.js";
|
|
@@ -350,7 +344,7 @@ onMounted(() => {
|
|
|
// dayjs(Number(route.query.ts)).format("YYYY-MM-DD HH:mm:ss"),
|
|
|
// ];
|
|
|
// }
|
|
|
- // getStationList(); //场站
|
|
|
+ // getStationList(); //场站
|
|
|
getequipmentmodel_list(); //机型
|
|
|
getfetchRelatePart(); //部件
|
|
|
});
|
|
@@ -474,28 +468,34 @@ const state = reactive({
|
|
|
const stationList = ref([]);
|
|
|
//获取场站列表
|
|
|
const getStationList = async () => {
|
|
|
- const { data } = await getWpList(state.typeVal);
|
|
|
- stationList.value = data;
|
|
|
- if (state.deviceId && state.typeVal != "booststation") {
|
|
|
- let station = data.find((i) => {
|
|
|
- let st = i.id.split("_")[2];
|
|
|
- let dt = state.deviceId.split("_")[2];
|
|
|
- if (st == dt) {
|
|
|
- return i;
|
|
|
- }
|
|
|
- });
|
|
|
- state.stationId = station?.id;
|
|
|
- } else if (state.typeVal == "booststation") {
|
|
|
- let station = data.find((i) => i.name == state.stationName);
|
|
|
- state.stationId = station ? station?.id : data[0]?.id;
|
|
|
- } else {
|
|
|
- state.stationId = data[0]?.id;
|
|
|
- }
|
|
|
+ const { data } = await getStation({
|
|
|
+ companyids: 0,
|
|
|
+ type: state.typeVal == "windturbine" ? -1 : -2,
|
|
|
+ });
|
|
|
+
|
|
|
+ stationList.value = data.data;
|
|
|
+
|
|
|
+ state.stationId = stationList.value[0]?.id;
|
|
|
+ getWindturbineList();
|
|
|
+ // if (state.deviceId && state.typeVal != "booststation") {
|
|
|
+ // let station = data.data.find((i) => {
|
|
|
+ // let st = i.id.split("_")[2];
|
|
|
+ // let dt = state.deviceId.split("_")[2];
|
|
|
+ // if (st == dt) {
|
|
|
+ // return i;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // state.stationId = station?.id;
|
|
|
+ // } else if (state.typeVal == "booststation") {
|
|
|
+ // let station = data.data.find((i) => i.name == state.stationName);
|
|
|
+ // state.stationId = station ? station?.id : data.data[0]?.id;
|
|
|
+ // } else {
|
|
|
+ // state.stationId = data.data[0]?.id;
|
|
|
+ // }
|
|
|
|
|
|
- state.stationId = route.query.stationId || state.stationId;
|
|
|
- route.query.stationId ? (state.modelId = modelList.value?.[0]?.id || "") : "";
|
|
|
+ // state.stationId = route.query.stationId || state.stationId;
|
|
|
+ // route.query.stationId ? (state.modelId = modelList.value?.[0]?.id || "") : "";
|
|
|
if (stationList.value.length) {
|
|
|
- getWindturbineList();
|
|
|
}
|
|
|
};
|
|
|
|
|
@@ -515,17 +515,17 @@ const getStationList = async () => {
|
|
|
watch(
|
|
|
() => route,
|
|
|
(val, old) => {
|
|
|
- if (route.query.deviceType != "booststation") {
|
|
|
- state.deviceId = route.query.deviceId || "";
|
|
|
- state.alarmId = route.query.alarmId || "";
|
|
|
- state.typeVal = route.query.deviceType || "windturbine";
|
|
|
- state.modelId = route.query.modelId || "";
|
|
|
- } else {
|
|
|
- state.stationName = route.query.deviceId;
|
|
|
- state.deviceId = "";
|
|
|
- state.alarmId = route.query.alarmId || "";
|
|
|
- state.typeVal = route.query.deviceType || "booststation";
|
|
|
- }
|
|
|
+ // if (route.query.deviceType != "booststation") {
|
|
|
+ // state.deviceId = route.query.deviceId || "";
|
|
|
+ // state.alarmId = route.query.alarmId || "";
|
|
|
+ // state.typeVal = route.query.deviceType || "windturbine";
|
|
|
+ // state.modelId = route.query.modelId || "";
|
|
|
+ // } else {
|
|
|
+ // state.stationName = route.query.deviceId;
|
|
|
+ // state.deviceId = "";
|
|
|
+ // state.alarmId = route.query.alarmId || "";
|
|
|
+ // state.typeVal = route.query.deviceType || "booststation";
|
|
|
+ // }
|
|
|
state.isshowwindturbineName =
|
|
|
state.typeVal == "booststation" ? false : true;
|
|
|
getStationList();
|
|
@@ -537,38 +537,249 @@ watch(
|
|
|
);
|
|
|
//型号列表
|
|
|
const modelList = computed(() => {
|
|
|
- if (state.typeVal != "booststation") {
|
|
|
- if (state.stationId == "") {
|
|
|
- return [];
|
|
|
- } else {
|
|
|
- state.modelId = route.query.deviceId ? route.query.modelId : "";
|
|
|
- return state.modelListAll[state.stationId];
|
|
|
- }
|
|
|
- } else {
|
|
|
- return [];
|
|
|
- }
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ id: "SEC-W02B-1250kW",
|
|
|
+ nemCode: "SEC-W02B-1250kW",
|
|
|
+ name: "SEC-W02B-1250kW",
|
|
|
+ aname: "SEC-W02B-1250kW",
|
|
|
+ description: "DI",
|
|
|
+ powerProduction: 1250,
|
|
|
+ windturbineManufacturerId: "SHDQ_MF",
|
|
|
+ photo: null,
|
|
|
+ unit: null,
|
|
|
+ cutinwindSpeed: 3,
|
|
|
+ ratedwindSpeed: 11,
|
|
|
+ cutoutwindSpeed: "25",
|
|
|
+ sweptArea: 5800,
|
|
|
+ equipmentCategory: "F",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ // if (state.typeVal != "booststation") {
|
|
|
+ // if (state.stationId == "") {
|
|
|
+ // return [];
|
|
|
+ // } else {
|
|
|
+ // state.modelId = route.query.deviceId ? route.query.modelId : "";
|
|
|
+ // return state.modelListAll[state.stationId];
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // return [];
|
|
|
+ // }
|
|
|
});
|
|
|
//部件列表
|
|
|
const componentList = computed(() => {
|
|
|
- if (state.typeVal != "booststation") {
|
|
|
- if (state.stationId == "") {
|
|
|
- return [];
|
|
|
- } else {
|
|
|
- if (state.stationId.includes("FDC")) {
|
|
|
- return state.fetchListAll?.fjbj;
|
|
|
- } else {
|
|
|
- return state.fetchListAll?.gfbj;
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- return [];
|
|
|
- }
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ id: "1",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "YP",
|
|
|
+ name: "叶片",
|
|
|
+ orderNumber: 1,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "2",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "LG",
|
|
|
+ name: "轮毂",
|
|
|
+ orderNumber: 2,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "3",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "TJ",
|
|
|
+ name: "塔架",
|
|
|
+ orderNumber: 3,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "4",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "JC",
|
|
|
+ name: "机舱",
|
|
|
+ orderNumber: 4,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "5",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "KZXT",
|
|
|
+ name: "控制系统",
|
|
|
+ orderNumber: 5,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "6",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "BJXT",
|
|
|
+ name: "变桨系统",
|
|
|
+ orderNumber: 6,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "7",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "PHXT",
|
|
|
+ name: "偏航系统",
|
|
|
+ orderNumber: 7,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "8",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "CLX",
|
|
|
+ name: "齿轮箱",
|
|
|
+ orderNumber: 8,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "9",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "FDJ",
|
|
|
+ name: "发电机",
|
|
|
+ orderNumber: 9,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "10",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "BPQ",
|
|
|
+ name: "变频器",
|
|
|
+ orderNumber: 10,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "11",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "YYXT",
|
|
|
+ name: "液压系统",
|
|
|
+ orderNumber: 11,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "12",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "FZXT",
|
|
|
+ name: "辅助系统",
|
|
|
+ orderNumber: 12,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "13",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "CFXT",
|
|
|
+ name: "测风系统",
|
|
|
+ orderNumber: 13,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "14",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "DWXT",
|
|
|
+ name: "电网系统",
|
|
|
+ orderNumber: 14,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "15",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "TDG",
|
|
|
+ name: "塔底柜",
|
|
|
+ orderNumber: 15,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "16",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "CDL",
|
|
|
+ name: "传动链",
|
|
|
+ orderNumber: 16,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "17",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "QT",
|
|
|
+ name: "其他",
|
|
|
+ orderNumber: 17,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "42",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "CGQ",
|
|
|
+ name: "传感器",
|
|
|
+ orderNumber: 19,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "41",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "BYQ",
|
|
|
+ name: "变压器",
|
|
|
+ orderNumber: 18,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: "44",
|
|
|
+ category: "alertrule_category",
|
|
|
+ nemCode: "ZZ",
|
|
|
+ name: "主轴",
|
|
|
+ orderNumber: 20,
|
|
|
+ enable: 1,
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ // if (state.typeVal != "booststation") {
|
|
|
+ // if (state.stationId == "") {
|
|
|
+ // return [];
|
|
|
+ // } else {
|
|
|
+ // if (state.stationId.includes("FDC")) {
|
|
|
+ // return state.fetchListAll?.fjbj;
|
|
|
+ // } else {
|
|
|
+ // return state.fetchListAll?.gfbj;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // return [];
|
|
|
+ // }
|
|
|
});
|
|
|
//get 风机
|
|
|
const getWindturbineList = async () => {
|
|
|
state.deviceId = "";
|
|
|
- const { data } = await fetchWindturbineList(state.stationId);
|
|
|
- state.windturbineList = data;
|
|
|
+
|
|
|
+ // const { data } = await getApiequipmentListByWp({ wpid: state.stationId });
|
|
|
+
|
|
|
+ state.windturbineList = [
|
|
|
+ {
|
|
|
+ id: "SXJ_KGDL_XWT_F_WT_0001_EQ",
|
|
|
+ nemCode: "#1",
|
|
|
+ windpowerstationId: "SXJ_KGDL_XWT_FDC_STA",
|
|
|
+ longitude: 112.415335,
|
|
|
+ latitude: 40.281307,
|
|
|
+ modelId: "SEC-W02B-1250kW",
|
|
|
+ status: "NULL",
|
|
|
+ projectId: "SXJ_KGDL_XWTF01_EG",
|
|
|
+ lineId: "SXJ_KGDL_XWTF01_LN",
|
|
|
+ firstIntegratedTime: "2008-07-27T16:00:00.000+0000",
|
|
|
+ photo: "NULL",
|
|
|
+ name: "01号风机",
|
|
|
+ aname: "#1",
|
|
|
+ isStandard: 1,
|
|
|
+ regionId: "SXJ_RGN",
|
|
|
+ companyId: "SXJ_KGDL_FLFD_ZGS",
|
|
|
+ isable: 1,
|
|
|
+ equipmentCategory: -1,
|
|
|
+ parentId: "NULL",
|
|
|
+ squareId: "NULL",
|
|
|
+ spare1: "WT",
|
|
|
+ spare2: "1",
|
|
|
+ spare3: "NULL",
|
|
|
+ spare4: "NULL",
|
|
|
+ orderNum: 271,
|
|
|
+ substationId: "SXJ_KGDL_XWTF01_SBS",
|
|
|
+ },
|
|
|
+ ];
|
|
|
// state.modelId = modelList.value?.[0]?.id || "";
|
|
|
await getAlarmHistoryt();
|
|
|
};
|
|
@@ -583,36 +794,78 @@ const getAlarmHistoryt = async () => {
|
|
|
// if (route.params.deviceId && route.params.alarmId) {
|
|
|
// state.stationId = "";
|
|
|
// }
|
|
|
- BASE.showLoading();
|
|
|
- let params = {
|
|
|
- pageNum: query.page,
|
|
|
- pageSize: query.limit,
|
|
|
- alarmId: state.alarmId,
|
|
|
- alarmType: state.typeVal,
|
|
|
- stationid: state.stationId,
|
|
|
- deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
- modelId: state.typeVal == "booststation" ? "" : state.modelId,
|
|
|
- components: state.components,
|
|
|
- description: state.description,
|
|
|
- begin: state.dateTime[0],
|
|
|
- end: state.dateTime[1],
|
|
|
- };
|
|
|
- const { data } = await alarm_history(params);
|
|
|
- BASE.closeLoading();
|
|
|
- query.pageTotal = data?.total;
|
|
|
- data?.ls?.forEach((ele) => {
|
|
|
- ele.isCloseName = ele.endts ? "已解除" : "未解除";
|
|
|
- ele.alarmTypeName =
|
|
|
- ele.alarmType === "booststation"
|
|
|
- ? "升压站"
|
|
|
- : ele.alarmType === "windturbine"
|
|
|
- ? "风机"
|
|
|
- : ele.alarmType === "inverter"
|
|
|
- ? "光伏"
|
|
|
- : "";
|
|
|
- ele.endtsName = ele.endts > 0 ? formatTime(ele.endts) : "--";
|
|
|
+ // BASE.showLoading();
|
|
|
+ // let params = {
|
|
|
+ // pageNum: query.page,
|
|
|
+ // pageSize: query.limit,
|
|
|
+ // alarmId: state.alarmId,
|
|
|
+ // alarmType: state.typeVal,
|
|
|
+ // stationid: state.stationId,
|
|
|
+ // deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
+ // modelId: state.typeVal == "booststation" ? "" : state.modelId,
|
|
|
+ // components: state.components,
|
|
|
+ // description: state.description,
|
|
|
+ // begin: state.dateTime[0],
|
|
|
+ // end: state.dateTime[1],
|
|
|
+ // };
|
|
|
+ // const { data } = await alarm_history(params);
|
|
|
+ // BASE.closeLoading();
|
|
|
+ // query.pageTotal = data?.total;
|
|
|
+ // data?.ls?.forEach((ele) => {
|
|
|
+ // ele.isCloseName = ele.endts ? "已解除" : "未解除";
|
|
|
+ // ele.alarmTypeName =
|
|
|
+ // ele.alarmType === "booststation"
|
|
|
+ // ? "升压站"
|
|
|
+ // : ele.alarmType === "windturbine"
|
|
|
+ // ? "风机"
|
|
|
+ // : ele.alarmType === "inverter"
|
|
|
+ // ? "光伏"
|
|
|
+ // : "";
|
|
|
+ // ele.endtsName = ele.endts > 0 ? formatTime(ele.endts) : "--";
|
|
|
+ // });
|
|
|
+ // state.tableData = data?.ls;
|
|
|
+ state.tableData = new Array(5).fill({
|
|
|
+ tbName: null,
|
|
|
+ alarmId: "SQ_0125",
|
|
|
+ alarmType: "windturbine",
|
|
|
+ characteristic: "报警",
|
|
|
+ components: "BPQ",
|
|
|
+ confirmed: false,
|
|
|
+ description: "变频器故障27",
|
|
|
+ deviceId: "SXJ_KGDL_XWT_F_WT_0014_EQ",
|
|
|
+ devicename: "14号风机",
|
|
|
+ deviceType: "windturbine",
|
|
|
+ enabled: true,
|
|
|
+ lineid: "SXJ_KGDL_XWTF01_LN",
|
|
|
+ linename: "一号风机线",
|
|
|
+ modelId: "SEC-W02B-1250kW",
|
|
|
+ projectid: "SXJ_KGDL_XWTF01_EG",
|
|
|
+ projectname: "一期项目",
|
|
|
+ rank: 3,
|
|
|
+ resettable: false,
|
|
|
+ stationid: "SXJ_KGDL_XWT_FDC_STA",
|
|
|
+ stationname: "13风电场",
|
|
|
+ subcomponents: "NULL",
|
|
|
+ suffix: null,
|
|
|
+ tagid: "FD-YYXWT-ShangQi.140623F1412MDL01BF399DB0122SP01RAW00",
|
|
|
+ triggertype: 1463,
|
|
|
+ uniformcode: "BJ0001",
|
|
|
+ superTableName: null,
|
|
|
+ ts: 1718160795000,
|
|
|
+ val: 1,
|
|
|
+ oval: null,
|
|
|
+ endts: 0,
|
|
|
+ timelong: 0,
|
|
|
+ name: null,
|
|
|
+ nemCode: "状态码1463",
|
|
|
+ faultCause: "13.7s>信号<=14.2s",
|
|
|
+ resolvent: "输入端142功率上升延迟300s",
|
|
|
+ wpName: "13风电场",
|
|
|
+ code: "#14",
|
|
|
+ wpId: null,
|
|
|
+ faultType: null,
|
|
|
+ id: "sxj_kgdl_xwt_f_wt_0014_eq_sq_0125",
|
|
|
});
|
|
|
- state.tableData = data?.ls;
|
|
|
};
|
|
|
//报警类型变化
|
|
|
const typechange = () => {
|