|
@@ -48,7 +48,7 @@
|
|
|
<div class="search-input" v-if="state.isshowwindturbineName">
|
|
|
<span class="lable">机组:</span>
|
|
|
<el-select
|
|
|
- v-model="state.windturbineId"
|
|
|
+ v-model="state.deviceId"
|
|
|
clearable
|
|
|
size="mini"
|
|
|
placeholder="全部"
|
|
@@ -162,7 +162,7 @@
|
|
|
header-align="center"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <p :style="item.style && item.style(item)">
|
|
|
+ <p :style="item.style && item.style(scope.row)">
|
|
|
<span v-if="item.code == 'rank'">
|
|
|
{{ tableFilter(scope.row.rank) }}
|
|
|
</span>
|
|
@@ -213,7 +213,7 @@
|
|
|
header-align="center"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <p :style="item.style && item.style(item)">
|
|
|
+ <p :style="item.style && item.style(scope.row)">
|
|
|
<span v-if="item.code == 'rank'">
|
|
|
{{ tableFilter(scope.row.rank) }}
|
|
|
</span>
|
|
@@ -301,8 +301,17 @@ onMounted(() => {
|
|
|
dayjs().startOf("day").format("YYYY-MM-DD HH:mm:ss"),
|
|
|
dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
];
|
|
|
- state.deviceId = route.params.deviceId || "";
|
|
|
- state.alarmId = route.params.alarmId || "";
|
|
|
+ if (route.params.typeVal != "booststation") {
|
|
|
+ state.deviceId = route.params.deviceId || "";
|
|
|
+ state.alarmId = route.params.alarmId || "";
|
|
|
+ state.typeVal = route.params.typeVal || "windturbine";
|
|
|
+ } else {
|
|
|
+ state.stationName = route.params.deviceId;
|
|
|
+ state.deviceId = "";
|
|
|
+ state.alarmId = route.params.alarmId || "";
|
|
|
+ state.typeVal = route.params.typeVal || "booststation";
|
|
|
+ }
|
|
|
+ state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
|
|
|
getStationList();
|
|
|
getequipmentmodel_list();
|
|
|
getfetchRelatePart();
|
|
@@ -371,9 +380,10 @@ const state = reactive({
|
|
|
],
|
|
|
typeVal: "windturbine",
|
|
|
stationId: "",
|
|
|
+ stationName: "",
|
|
|
alarmId: "",
|
|
|
windturbineList: [],
|
|
|
- windturbineId: "",
|
|
|
+ deviceId: "",
|
|
|
modelListAll: {},
|
|
|
fetchListAll: {},
|
|
|
modelId: "", //型号
|
|
@@ -425,6 +435,21 @@ 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;
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
watch(
|
|
@@ -432,9 +457,7 @@ watch(
|
|
|
(val, old) => {
|
|
|
val?.value?.length &&
|
|
|
nextTick(async () => {
|
|
|
- state.stationId = val.value[0]?.id;
|
|
|
await getWindturbineList();
|
|
|
- await getAlarmHistoryt();
|
|
|
});
|
|
|
},
|
|
|
{
|
|
@@ -445,13 +468,18 @@ watch(
|
|
|
watch(
|
|
|
() => route,
|
|
|
(val, old) => {
|
|
|
- state.deviceId = route.params.deviceId || "";
|
|
|
- state.alarmId = route.params.alarmId || "";
|
|
|
- nextTick(async () => {
|
|
|
- if (route.params.deviceId && route.params.alarmId) {
|
|
|
- await getAlarmHistoryt();
|
|
|
- }
|
|
|
- });
|
|
|
+ if (route.params.typeVal != "booststation") {
|
|
|
+ state.deviceId = route.params.deviceId || "";
|
|
|
+ state.alarmId = route.params.alarmId || "";
|
|
|
+ state.typeVal = route.params.typeVal || "windturbine";
|
|
|
+ } else {
|
|
|
+ state.stationName = route.params.deviceId;
|
|
|
+ state.deviceId = "";
|
|
|
+ state.alarmId = route.params.alarmId || "";
|
|
|
+ state.typeVal = route.params.typeVal || "booststation";
|
|
|
+ }
|
|
|
+ state.isshowwindturbineName =
|
|
|
+ state.typeVal == "booststation" ? false : true;
|
|
|
},
|
|
|
{
|
|
|
deep: true,
|
|
@@ -464,7 +492,9 @@ const modelList = computed(() => {
|
|
|
if (state.stationId == "") {
|
|
|
return [];
|
|
|
} else {
|
|
|
- state.modelId = state.modelListAll[state.stationId]?.[0]?.id || "";
|
|
|
+ state.modelId = route.params.deviceId
|
|
|
+ ? ""
|
|
|
+ : state.modelListAll[state.stationId]?.[0]?.id || "";
|
|
|
return state.modelListAll[state.stationId];
|
|
|
}
|
|
|
} else {
|
|
@@ -489,10 +519,9 @@ const componentList = computed(() => {
|
|
|
});
|
|
|
//get 风机
|
|
|
const getWindturbineList = async () => {
|
|
|
- state.windturbineList = [];
|
|
|
- state.windturbineId = "";
|
|
|
const { data } = await fetchWindturbineList(state.stationId);
|
|
|
state.windturbineList = data;
|
|
|
+ await getAlarmHistoryt();
|
|
|
};
|
|
|
const query = reactive({
|
|
|
page: 1,
|
|
@@ -502,18 +531,16 @@ const query = reactive({
|
|
|
|
|
|
// 获取历史记录表
|
|
|
const getAlarmHistoryt = async () => {
|
|
|
- if (route.params.deviceId && route.params.alarmId) {
|
|
|
- state.stationId = "";
|
|
|
- }
|
|
|
+ // if (route.params.deviceId && route.params.alarmId) {
|
|
|
+ // state.stationId = "";
|
|
|
+ // }
|
|
|
let params = {
|
|
|
pageNum: query.page,
|
|
|
pageSize: query.limit,
|
|
|
alarmId: state.alarmId,
|
|
|
alarmType: state.typeVal,
|
|
|
stationid: state.stationId,
|
|
|
- deviceid:
|
|
|
- state.deviceId ||
|
|
|
- (state.typeVal == "booststation" ? "" : state.windturbineId),
|
|
|
+ deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
modelId: state.typeVal == "booststation" ? "" : state.modelId,
|
|
|
components: state.components,
|
|
|
description: state.description,
|
|
@@ -537,6 +564,8 @@ const getAlarmHistoryt = async () => {
|
|
|
};
|
|
|
//报警类型变化
|
|
|
const typechange = () => {
|
|
|
+ state.alarmId = "";
|
|
|
+ state.deviceId = "";
|
|
|
state.isshowwindturbineName = state.typeVal == "booststation" ? false : true;
|
|
|
};
|
|
|
|
|
@@ -547,7 +576,7 @@ const export2Excel = async () => {
|
|
|
pageSize: query.pageTotal,
|
|
|
alarmType: state.typeVal,
|
|
|
stationid: state.stationId,
|
|
|
- deviceid: state.typeVal == "booststation" ? "" : state.windturbineId,
|
|
|
+ deviceid: state.typeVal == "booststation" ? "" : state.deviceId,
|
|
|
modelId: state.modelId,
|
|
|
components: state.components,
|
|
|
description: state.description,
|