|
@@ -167,8 +167,8 @@
|
|
|
<el-radio :label="2">按月</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
- <div class="allMain" v-for="it in 30" :key="it">
|
|
|
- <span class="mainTit">2025-01-{{it}}</span>
|
|
|
+ <div class="allMain">
|
|
|
+ <!-- <span class="mainTit">2025-01-{{it}}</span> -->
|
|
|
<div class="allMsg">
|
|
|
<div class="warnLine">
|
|
|
<RadarLineChartCom width="45vw" height="50vh" :xAxis="problem3.xAxis" :series="problem3.series" />
|
|
@@ -632,10 +632,10 @@
|
|
|
changeRadio(val) {
|
|
|
if (val === 1) {
|
|
|
if (this.noTimeType === "WT2000D121H85") {
|
|
|
- this.getShutdownEventByDay("WT2000D121H85", this.radioTime)
|
|
|
+ this.getShutdownEventByDay("WT2000D121H85", this.radioTime, "Dia")
|
|
|
this.getShutdownEventByMap("WT2000D121H85", this.radioTime)
|
|
|
} else {
|
|
|
- this.getShutdownEventByDay("UP2000-130", this.radioTime)
|
|
|
+ this.getShutdownEventByDay("UP2000-130", this.radioTime, "Dia")
|
|
|
this.getShutdownEventByMap("UP2000-130", this.radioTime)
|
|
|
}
|
|
|
} else {
|
|
@@ -762,7 +762,7 @@
|
|
|
})
|
|
|
},
|
|
|
//获取故障次数时长----日
|
|
|
- getShutdownEventByDay(modelIds, dates) {
|
|
|
+ getShutdownEventByDay(modelIds, dates, type) {
|
|
|
let that = this
|
|
|
let params = {
|
|
|
wpId: "NX_FGS_HA_FDC_STA",
|
|
@@ -796,17 +796,31 @@
|
|
|
},
|
|
|
];
|
|
|
if (modelIds === "WT2000D121H85") {
|
|
|
- that.getPowerLine(
|
|
|
- xAxis,
|
|
|
- series,
|
|
|
- "problem1"
|
|
|
- );
|
|
|
+ if (type === 'Dia') {
|
|
|
+ that.problem3 = {
|
|
|
+ xAxis: xAxis,
|
|
|
+ series: series
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ that.getPowerLine(
|
|
|
+ xAxis,
|
|
|
+ series,
|
|
|
+ "problem1"
|
|
|
+ );
|
|
|
+ }
|
|
|
} else {
|
|
|
- that.getPowerLine2(
|
|
|
- xAxis,
|
|
|
- series,
|
|
|
- "problem2"
|
|
|
- );
|
|
|
+ if (type === 'Dia') {
|
|
|
+ that.problem3 = {
|
|
|
+ xAxis: xAxis,
|
|
|
+ series: series
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ that.getPowerLine2(
|
|
|
+ xAxis,
|
|
|
+ series,
|
|
|
+ "problem2"
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
})
|