|
@@ -7,6 +7,7 @@
|
|
|
<div class="search-content">
|
|
|
<el-select
|
|
|
v-model="state.typeVal"
|
|
|
+ style="width: 100px"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
@@ -35,6 +36,7 @@
|
|
|
<div class="search-content">
|
|
|
<el-select
|
|
|
v-model="state.stationId"
|
|
|
+ style="width: 120px"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
@@ -55,6 +57,7 @@
|
|
|
<div class="search-content">
|
|
|
<el-select
|
|
|
v-model="state.deviceId"
|
|
|
+ style="width: 120px"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
@@ -75,6 +78,7 @@
|
|
|
<div class="search-content">
|
|
|
<el-select
|
|
|
v-model="state.modelId"
|
|
|
+ style="width: 120px"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
@@ -95,10 +99,13 @@
|
|
|
<div class="search-content">
|
|
|
<el-select
|
|
|
v-model="state.components"
|
|
|
+ style="width: 120px"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
|
popper-class="select"
|
|
|
+ multiple
|
|
|
+ collapse-tags
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in componentList"
|
|
@@ -138,8 +145,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="btns">
|
|
|
- <el-button class="buttons" round size="mini">查询</el-button>
|
|
|
- <!-- @click="getAlarmHistoryt" -->
|
|
|
+ <el-button class="buttons" round size="mini" @click="getAlarmHistoryt"
|
|
|
+ >查询</el-button
|
|
|
+ >
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
class="buttons"
|
|
@@ -149,27 +157,25 @@
|
|
|
>
|
|
|
导出</el-button
|
|
|
>
|
|
|
- <!-- @click="export2Excel" -->
|
|
|
- <el-button
|
|
|
+ <!-- <el-button
|
|
|
class="buttons"
|
|
|
round
|
|
|
size="mini"
|
|
|
:disabled="!state.tableData?.length"
|
|
|
+ @click="confirmItem(state.tableData)"
|
|
|
>确认本页</el-button
|
|
|
- >
|
|
|
- <!-- @click="confirmItem(state.tableData)" -->
|
|
|
+ > -->
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="table-wrapper">
|
|
|
- <div class="leftContent">
|
|
|
+ <div class="leftContent" :data-type="$store.state.moreSty">
|
|
|
<span>{{ pageTitle }}</span>
|
|
|
</div>
|
|
|
<el-table
|
|
|
size="mini"
|
|
|
:data="state.tableData"
|
|
|
- height="calc(100% - 35px - 55px)"
|
|
|
- style="width: 100%"
|
|
|
+ style="width: 100%; height: calc(100% - 35px - 55px)"
|
|
|
stripe
|
|
|
>
|
|
|
<template v-if="state.isshowwindturbineName">
|
|
@@ -205,6 +211,10 @@
|
|
|
>
|
|
|
{{ scope.row.confirmed ? "是" : "否" }}
|
|
|
</span>
|
|
|
+ <span v-else-if="item.code == 'components'">
|
|
|
+ <!-- {{ getComponentsName(scope.row.components) }} -->
|
|
|
+ {{ scope.row.components }}
|
|
|
+ </span>
|
|
|
<span v-else>
|
|
|
{{
|
|
|
scope.row[item.code] != "NULL" ? scope.row[item.code] : "--"
|
|
@@ -220,8 +230,14 @@
|
|
|
align="center"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <el-button type="text" style="color: #05bb4c">确认本条</el-button>
|
|
|
- <!-- @click="confirmItem([scope.row])" -->
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ :style="`color: ${
|
|
|
+ $store.state.theme ? '#1890ff' : '#47aee7'
|
|
|
+ } !important`"
|
|
|
+ @click="confirmItem([scope.row])"
|
|
|
+ >确认本条</el-button
|
|
|
+ >
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
@@ -270,8 +286,12 @@
|
|
|
fixed="right"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <el-button type="text" style="color: #05bb4c">确认本条</el-button>
|
|
|
- <!-- @click="confirmItem([scope.row])" -->
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ style="color: #05bb4c"
|
|
|
+ @click="confirmItem([scope.row])"
|
|
|
+ >确认本条</el-button
|
|
|
+ >
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</template>
|
|
@@ -285,8 +305,8 @@
|
|
|
:total="query.pageTotal"
|
|
|
@size-change="
|
|
|
(value) => {
|
|
|
- query.page = 1;
|
|
|
query.limit = value;
|
|
|
+ query.page = 1;
|
|
|
getAlarmHistoryt();
|
|
|
}
|
|
|
"
|
|
@@ -298,8 +318,6 @@
|
|
|
</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";
|
|
@@ -321,6 +339,14 @@ const store = useStore();
|
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
|
+const getComponentsName = (components) => {
|
|
|
+ const listItem =
|
|
|
+ componentList?.value?.find((ele) => {
|
|
|
+ return ele.nemCode === components;
|
|
|
+ }) || {};
|
|
|
+ return listItem?.name || "";
|
|
|
+};
|
|
|
+
|
|
|
onMounted(() => {
|
|
|
state.dateTime = [
|
|
|
dayjs().startOf("day").format("YYYY-MM-DD HH:mm:ss"),
|
|
@@ -338,15 +364,59 @@ onMounted(() => {
|
|
|
state.typeVal = route.query.deviceType || "booststation";
|
|
|
}
|
|
|
state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
|
|
|
-
|
|
|
- getAlarmHistoryt()
|
|
|
// if (route.query.ts) {
|
|
|
// state.dateTime = [
|
|
|
// `${dayjs(Number(route.query.ts)).format("YYYY-MM-DD")} 00:00:00`,
|
|
|
// dayjs(Number(route.query.ts)).format("YYYY-MM-DD HH:mm:ss"),
|
|
|
// ];
|
|
|
// }
|
|
|
- // getStationList(); //场站
|
|
|
+
|
|
|
+ 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: "",
|
|
|
+ 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",
|
|
|
+ });
|
|
|
+
|
|
|
+ getStationList(); //场站
|
|
|
+ // getAlarmHistoryt();
|
|
|
+
|
|
|
getequipmentmodel_list(); //机型
|
|
|
getfetchRelatePart(); //部件
|
|
|
});
|
|
@@ -362,7 +432,7 @@ const getfetchRelatePart = async () => {
|
|
|
};
|
|
|
|
|
|
const confirmItem = (alarmItem) => {
|
|
|
- ElMessageBox("您确定要执行此操作吗?", "提示", {
|
|
|
+ ElMessageBox.confirm("您确定要执行此操作吗?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
@@ -413,7 +483,7 @@ const state = reactive({
|
|
|
// },
|
|
|
],
|
|
|
typeVal: "windturbine",
|
|
|
- stationId: "",
|
|
|
+ stationId: "GJNY_SXGS_ZZ_FDC_STA",
|
|
|
stationName: "",
|
|
|
alarmId: "",
|
|
|
windturbineList: [],
|
|
@@ -421,7 +491,7 @@ const state = reactive({
|
|
|
modelListAll: {},
|
|
|
fetchListAll: {},
|
|
|
modelId: "", //型号
|
|
|
- components: "", //部件
|
|
|
+ components: [], //部件
|
|
|
description: "", //描述
|
|
|
dateTime: [],
|
|
|
startDate: null,
|
|
@@ -431,12 +501,12 @@ const state = reactive({
|
|
|
ts: "",
|
|
|
tableHeader: [
|
|
|
{ title: "时间", code: "ts", width: "150" },
|
|
|
- { title: "场站", code: "stationname", width: "150" },
|
|
|
- { title: "机组", code: "devicename", width: "150" },
|
|
|
- { title: "报警信息", code: "description", width: "180" },
|
|
|
- { title: "故障原因", code: "faultCause" },
|
|
|
+ { title: "场站", code: "stationname", width: "120" },
|
|
|
+ { title: "机组", code: "devicename", width: "100" },
|
|
|
+ { title: "报警信息", code: "description" },
|
|
|
+ // { title: "故障原因", code: "faultCause" },
|
|
|
// { title: "级别", code: "rank", width: "80" },
|
|
|
- { title: "故障编码", code: "nemCode", width: "100" },
|
|
|
+ { title: "部件类型", code: "components", width: "120" },
|
|
|
// { title: "故障解决方法", code: "resolvent" },
|
|
|
{ title: "报警解除时间", code: "endtsName", width: "150" },
|
|
|
{
|
|
@@ -470,34 +540,28 @@ const state = reactive({
|
|
|
const stationList = ref([]);
|
|
|
//获取场站列表
|
|
|
const getStationList = async () => {
|
|
|
- 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;
|
|
|
- // }
|
|
|
+ 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;
|
|
|
+ }
|
|
|
|
|
|
- // 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();
|
|
|
}
|
|
|
};
|
|
|
|
|
@@ -517,17 +581,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();
|
|
@@ -539,336 +603,85 @@ watch(
|
|
|
);
|
|
|
//型号列表
|
|
|
const modelList = computed(() => {
|
|
|
- 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 [];
|
|
|
- // }
|
|
|
+ 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(() => {
|
|
|
- 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 [];
|
|
|
- // }
|
|
|
+ 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 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: "NX_FGS",
|
|
|
- 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",
|
|
|
- },
|
|
|
- ];
|
|
|
+ const { data } = await fetchWindturbineList(state.stationId || "");
|
|
|
+ state.windturbineList = data;
|
|
|
// state.modelId = modelList.value?.[0]?.id || "";
|
|
|
await getAlarmHistoryt();
|
|
|
};
|
|
|
const query = reactive({
|
|
|
page: 1,
|
|
|
- limit: 21,
|
|
|
+ limit: 1000,
|
|
|
pageTotal: null,
|
|
|
});
|
|
|
|
|
|
// 获取历史记录表
|
|
|
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) : "--";
|
|
|
- // });
|
|
|
- // 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",
|
|
|
+ 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.toString(),
|
|
|
+ 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) : "--";
|
|
|
+ ele.devicename = changName(ele)
|
|
|
});
|
|
|
+ state.tableData = data?.ls;
|
|
|
};
|
|
|
+const changName = (ele) => {
|
|
|
+ let str = ele.stationname.substring(0, ele.stationname.indexOf('风电场'))
|
|
|
+ return ele.devicename.substring(str.length, ele.devicename.length)
|
|
|
+}
|
|
|
//报警类型变化
|
|
|
const typechange = () => {
|
|
|
state.alarmId = "";
|
|
@@ -880,10 +693,10 @@ const typechange = () => {
|
|
|
const export2Excel = async () => {
|
|
|
let params = {
|
|
|
pageNum: query.page,
|
|
|
- pageSize: query.pageTotal,
|
|
|
+ pageSize: query.limit,
|
|
|
alarmType: state.typeVal,
|
|
|
- stationid: state.stationId,
|
|
|
- deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
+ stationId: state.stationId,
|
|
|
+ deviceId: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
modelId: state.modelId,
|
|
|
components: state.components,
|
|
|
description: state.description,
|
|
@@ -899,7 +712,8 @@ const export2Excel = async () => {
|
|
|
} else {
|
|
|
let tableHeader = [];
|
|
|
let tableKey = [];
|
|
|
- const { data } = await alarm_history(params);
|
|
|
+ // const { data } = await alarm_history(params);
|
|
|
+ const data = { ls: state?.tableData || [] };
|
|
|
if (state.isshowwindturbineName) {
|
|
|
tableHeader = state.tableHeader.map((item) => item.title);
|
|
|
tableKey = state.tableHeader.map((item) => item.code);
|
|
@@ -907,9 +721,10 @@ const export2Excel = async () => {
|
|
|
tableHeader = state.tableHeader1.map((item) => item.title);
|
|
|
tableKey = state.tableHeader1.map((item) => item.code);
|
|
|
}
|
|
|
- const stationName = stationList.value.find((ele) => {
|
|
|
- return ele.id === state.stationId;
|
|
|
- }).name;
|
|
|
+ const stationName =
|
|
|
+ stationList.value.find((ele) => {
|
|
|
+ return ele.id === state.stationId;
|
|
|
+ })?.name || "";
|
|
|
const fileName = `${stationName} ${state.dateTime[0]} ~ ${state.dateTime[1]} 数据表`;
|
|
|
outExportExcel(
|
|
|
tableHeader,
|
|
@@ -975,8 +790,7 @@ p {
|
|
|
margin: 0;
|
|
|
}
|
|
|
.history-warning {
|
|
|
- height: 100%;
|
|
|
- width: 100%;
|
|
|
+ height: calc(100% - 40px);
|
|
|
padding: 0 20px;
|
|
|
padding-bottom: 10px;
|
|
|
.form-wrapper ::v-deep {
|
|
@@ -1014,8 +828,8 @@ p {
|
|
|
justify-content: flex-end;
|
|
|
margin-right: 10px;
|
|
|
position: absolute;
|
|
|
- right: 0;
|
|
|
- top: 53px;
|
|
|
+ right: 80px;
|
|
|
+ top: 13px;
|
|
|
}
|
|
|
|
|
|
.buttons {
|
|
@@ -1031,14 +845,19 @@ p {
|
|
|
}
|
|
|
}
|
|
|
.table-wrapper {
|
|
|
- height: calc(100% - 43px);
|
|
|
- width: 100%;
|
|
|
+ height: calc(100% - 60px);
|
|
|
+ width: calc(100% - 20px);
|
|
|
+ .leftContent[data-type~="greenSty"] {
|
|
|
+ background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
|
|
|
+ }
|
|
|
+ .leftContent[data-type~="blueSty"] {
|
|
|
+ background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
|
|
|
+ }
|
|
|
.leftContent {
|
|
|
width: 242px;
|
|
|
height: 41px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
|
|
|
|
|
|
span {
|
|
|
font-size: 16px;
|