瀏覽代碼

综合报警首页接口联调

sunzehao 2 月之前
父節點
當前提交
2993197ebf
共有 2 個文件被更改,包括 32 次插入15 次删除
  1. 3 0
      src/api/sandtable/index.js
  2. 29 15
      src/views/SandTable/SandTable.vue

+ 3 - 0
src/api/sandtable/index.js

@@ -1,5 +1,8 @@
 import request from "@/tools/request";
 
+debugger
+const base = location.host
+
 //获取停机表格信息
 export function apiGetqueryshutdowneventlist(params) {
     return request({

+ 29 - 15
src/views/SandTable/SandTable.vue

@@ -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"
+                                );
+                            }
                         }
                     }
                 })