|
@@ -390,7 +390,7 @@ onMounted(() => {
|
|
projectname: "一期项目",
|
|
projectname: "一期项目",
|
|
rank: 3,
|
|
rank: 3,
|
|
resettable: false,
|
|
resettable: false,
|
|
- stationid: "SXJ_KGDL_XWT_FDC_STA",
|
|
|
|
|
|
+ stationid: "",
|
|
stationname: "13风电场",
|
|
stationname: "13风电场",
|
|
subcomponents: "NULL",
|
|
subcomponents: "NULL",
|
|
suffix: null,
|
|
suffix: null,
|
|
@@ -503,7 +503,7 @@ const state = reactive({
|
|
{ title: "时间", code: "ts", width: "150" },
|
|
{ title: "时间", code: "ts", width: "150" },
|
|
{ title: "场站", code: "stationname", width: "150" },
|
|
{ title: "场站", code: "stationname", width: "150" },
|
|
{ title: "机组", code: "devicename", width: "150" },
|
|
{ title: "机组", code: "devicename", width: "150" },
|
|
- { title: "报警信息", code: "description", width: "180" },
|
|
|
|
|
|
+ { title: "报警信息", code: "description" },
|
|
// { title: "故障原因", code: "faultCause" },
|
|
// { title: "故障原因", code: "faultCause" },
|
|
// { title: "级别", code: "rank", width: "80" },
|
|
// { title: "级别", code: "rank", width: "80" },
|
|
{ title: "部件类型", code: "components", width: "120" },
|
|
{ title: "部件类型", code: "components", width: "120" },
|
|
@@ -550,12 +550,12 @@ const getStationList = async () => {
|
|
return i;
|
|
return i;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- state.stationId = station?.id;
|
|
|
|
|
|
+ // state.stationId = station?.id;
|
|
} else if (state.typeVal == "booststation") {
|
|
} else if (state.typeVal == "booststation") {
|
|
let station = data.find((i) => i.name == state.stationName);
|
|
let station = data.find((i) => i.name == state.stationName);
|
|
- state.stationId = station ? station?.id : data[0]?.id;
|
|
|
|
|
|
+ // state.stationId = station ? station?.id : data[0]?.id;
|
|
} else {
|
|
} else {
|
|
- state.stationId = data[0]?.id;
|
|
|
|
|
|
+ // state.stationId = data[0]?.id;
|
|
}
|
|
}
|
|
|
|
|
|
state.stationId = route.query.stationId || state.stationId;
|
|
state.stationId = route.query.stationId || state.stationId;
|