Browse Source

升压站矩阵、功率预测矩阵功能完成

baiyanting 1 year ago
parent
commit
056ab88f6f

+ 5 - 5
.env.development

@@ -1,10 +1,10 @@
 
-# VUE_APP_API=http://192.168.1.112:6060
-# VUE_APP_Matrix=http://192.168.1.112:6060
+VUE_APP_API=http://192.168.1.110:6060
+VUE_APP_Matrix=http://192.168.1.110:6060
 
-VUE_APP_API=http://10.81.3.153:6060
-# 经济运行 全监视 
-VUE_APP_Matrix=http://10.81.3.153:6060
+# VUE_APP_API=http://10.81.3.153:6060
+# # # 经济运行 全监视 
+# VUE_APP_Matrix=http://10.81.3.153:6060
 
 
 VUE_APP_ADAPTERURL=http://10.81.3.155:8011

File diff suppressed because it is too large
+ 1 - 0
src/assets/icon/svg/syz.svg


BIN
src/assets/imgs/power-bg1.png


+ 1 - 1
src/components/headerNavSta/index.vue

@@ -54,7 +54,7 @@
 import SvgIcon from "@/components/coms/icon/svg-icon.vue";
 import { headerCompany } from "@/api/headerNav/header.js";
 export default {
-  name: "HeaderNavSta", //全监视标题栏
+  name: "HeaderNavSta", //全监视标题栏
   props: {
     isAll: {
       type: Boolean,

+ 16 - 15
src/router/index.js

@@ -35,14 +35,14 @@ export const asyncRoutes = [
   //     component: () =>
   //       import(/* webpackChunkName: "agc" */ "@/views/stateMonitor/Agc/Agc.vue"),
   //     },
-  //全监视
+  //全监视
   {
     path: "/stateMonitor",
     redirect: "/stateMonitor/lightmatrix",
     component: () => import("@/views/stateMonitor"),
     name: "stateMonitor",
     meta: {
-      title: "全监视",
+      title: "全监视",
       icon: "",
       permissions: ["jn_stateMonitor", "*:*:*"],
     },
@@ -68,7 +68,17 @@ export const asyncRoutes = [
         },
       },
       {
-        path: "powerPredictMatrix", // 明细矩阵
+        path: "syzmatrix", // 升压站矩阵
+        name: "SYZMatrix",
+        component: () => import("@/views/stateMonitor/focus/syzDetails.vue"),
+        meta: {
+          title: "升压站矩阵",
+          icon: "svg-syz",
+          permissions: ["jn_mxjz", "*:*:*"],
+        },
+      },
+      {
+        path: "powerPredictMatrix", // 功率预测矩阵
         name: "PowerPredictMatrix",
         component: () => import("@/views/stateMonitor/powerPredictMatrix"),
         meta: {
@@ -336,16 +346,7 @@ export const asyncRoutes = [
           },
         ],
       },
-      {
-        path: "syzmatrix", // 升压站矩阵
-        name: "SYZMatrix",
-        component: () => import("@/views/stateMonitor/focus/agcDetails"),
-        meta: {
-          title: "升压站矩阵",
-          icon: "svg-mx-matrix",
-          permissions: ["jn_mxjz", "*:*:*"],
-        },
-      },
+
       /*{
         path: "agcmatrix", // AGC矩阵
         name: "AGCMatrix",
@@ -1072,13 +1073,13 @@ export const asyncRoutes = [
       },
     ],
   },
-  // 综合报表
+  // 智能报表
   {
     path: "/others",
     redirect: "/others/report/gjyrbb",
     name: "others",
     meta: {
-      title: "综合报表",
+      title: "智能报表",
       icon: "",
       permissions: ["jn_zhbb", "*:*:*"],
     },

+ 3 - 2
src/views/layout/Header.vue

@@ -120,7 +120,7 @@ export default {
         // },
         {
           id: "others",
-          text: "综合报表",
+          text: "智能报表",
           path: "/others",
           isActive: false,
         },
@@ -186,11 +186,12 @@ export default {
             });
           }
         });
-        currMenu.push({
+        currMenu.splice(2, 0, {
           id: "zhbj",
           text: "综合报警",
           path: "",
         });
+        // currMenu.push();
         return currMenu;
       } else {
         return [];

+ 1 - 1
src/views/layout/Menu.vue

@@ -96,7 +96,7 @@ export default {
       menuData: [
         {
           id: "stateMonitor",
-          text: "全监视",
+          text: "全监视",
           data: [],
         },
         {

+ 1 - 1
src/views/report/index.vue

@@ -4,7 +4,7 @@
 
 <script>
 export default {
-  name: "others", //综合报表
+  name: "others", //智能报表
 };
 </script>
 

+ 39 - 8
src/views/stateMonitor/factoryMonitor/components/headerButton.vue

@@ -104,6 +104,7 @@ export default {
   components: { SvgIcon },
   data() {
     return {
+      byRouter: false,
       tab: "JZ",
       OrganizationList: [
         {
@@ -135,15 +136,42 @@ export default {
       localCompanyid: "",
     };
   },
+  watch: {
+    $route: {
+      handler(val) {
+        if (Object.keys(val.query).length) {
+          this.byRouter = true;
+          this.localWpinfo = {
+            wpid: val.query.wpid,
+            wpname: val.query.wpname,
+          };
+          localStorage.setItem("companyId", "KGDL_FGS");
+          localStorage.setItem("wpInfo", JSON.stringify(this.localWpinfo));
+          this.localWpinfo = JSON.parse(localStorage.getItem("wpInfo"))
+            ? JSON.parse(localStorage.getItem("wpInfo"))
+            : {};
+          this.localCompanyid = localStorage.getItem("companyId");
+          //获取区域公司
+          this.$nextTick(() => {
+            this.getOrganizationList();
+          });
+        }
+      },
+      immediate: true,
+      deep: true,
+    },
+  },
   created() {
-    this.localWpinfo = JSON.parse(localStorage.getItem("wpInfo"))
-      ? JSON.parse(localStorage.getItem("wpInfo"))
-      : {};
-    this.localCompanyid = localStorage.getItem("companyId");
-    //获取区域公司
-    this.$nextTick(() => {
-      this.getOrganizationList();
-    });
+    if (!this.byRouter) {
+      this.localWpinfo = JSON.parse(localStorage.getItem("wpInfo"))
+        ? JSON.parse(localStorage.getItem("wpInfo"))
+        : {};
+      this.localCompanyid = localStorage.getItem("companyId");
+      //获取区域公司
+      this.$nextTick(() => {
+        this.getOrganizationList();
+      });
+    }
   },
   methods: {
     handleTabChanged(val) {
@@ -329,6 +357,9 @@ export default {
       return this.allPowerStation.slice(start, end);
     },
   },
+  unmounted() {
+    this.byRouter = false;
+  },
 };
 </script>
 <style lang="less" scoped>

+ 1 - 1
src/views/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation/components/previewPicture.vue

@@ -3,7 +3,7 @@
     <div class="paln-box">
       <div
         class="movableItem"
-        :style="{ width: width, height: height }"
+        :style="{ width: '100%', height: height }"
         @mousewheel="rollImg($event)"
         @mousedown="drag($event, 1)"
         ref="bigImage"

+ 1 - 1
src/views/stateMonitor/factoryMonitor/windPowerPlant/boosterStation/components/previewPicture.vue

@@ -3,7 +3,7 @@
     <div class="paln-box">
       <div
         class="movableItem"
-        :style="{ width: width, height: height }"
+        :style="{ width: '100%', height: height }"
         @mousewheel="rollImg($event)"
         @mousedown="drag($event, 1)"
         ref="bigImage"

+ 0 - 136
src/views/stateMonitor/focus/agcDetails.vue

@@ -1,136 +0,0 @@
-<template>
-  <BSHeaderButton :type="stationType" @renderData="renderData"/>
-  <div>
-    <!-- 风场 *************** -->
-    <!-- 高家堰 -->
-    <GJY class="booster-station-body" v-if="wpId === 'SXJ_KGDL_GJY_FDC_STA'"/>
-    <!-- 败虎堡 -->
-    <BHB class="booster-station-body" v-if="wpId === 'SXJ_KGDL_BHB_FDC_STA'"/>
-    <!-- 败虎堡三期 -->
-    <BHBSQ class="booster-station-body" v-if="wpId === 'SXJ_KGDL_BHB3_FDC_STA'"/>
-    <!-- 丁家窑 -->
-    <DJY class="booster-station-body" v-if="wpId === 'SXJ_KGDL_DJY_FDC_STA'"/>
-    <!-- 红石峁Vue组件-2022-10-20 11_55_20 -->
-    <HSM class="booster-station-body" v-if="wpId === 'SXJ_KGDL_HSM_FDC_STA'"/>
-    <!-- 牛家岭Vue组件 -->
-    <NJL class="booster-station-body" v-if="wpId === 'SXJ_KGDL_NJL_FDC_STA'"/>
-    <!-- 盘道梁Vue组件-2022-10-20 11_59_46 -->
-    <PDL class="booster-station-body" v-if="wpId === 'SXJ_KGDL_PDL_FDC_STA'"/>
-    <!-- 平头镇Vue组件-2022-10-20 11_42_23 -->
-    <PTZ class="booster-station-body" v-if="wpId === 'SXJ_KGDL_PTZ_FDC_STA'"/>
-    <!-- 小五台Vue组件-2022-09-26 17_35_39 -->
-    <XWT class="booster-station-body" v-if="wpId === 'SXJ_KGDL_XWT_FDC_STA'"/>
-    <!-- 羊头崖Vue组件-2022-10-20 12_03_02 -->
-    <YTY class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YTY_FDC_STA'"/>
-    <!-- 尹灵芝Vue组件 -->
-    <YLZ class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YLZ_FDC_STA'"/>
-    <!-- 禹丰Vue组件 -->
-    <YF class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YF_FDC_STA'"/>
-    <!-- 朱坑-2022-10-24 16_45_46 -->
-    <ZK class="booster-station-body" v-if="wpId === 'SXJ_KGDL_ZK_FDC_STA'"/>
-    <!-- 米粮局Vue组件-2022-10-24 16_45_46 -->
-    <MLJ class="booster-station-body" v-if="wpId === 'NMM_KGDL_MLJ_FDC_STA'"/>
-
-    <!-- 光伏 *************** -->
-    <!-- 繁峙均然 -->
-    <GFfanshijunran class="booster-station-body" v-if="wpId === 'SXJ_KGDL_JR_GDC_STA'"/>
-    <!-- 方山孙家山 -->
-    <GFfangshansunjiashan class="booster-station-body" v-if="wpId === 'SXJ_KGDL_FS_GDC_STA'"/>
-    <!-- 屯留吾元 -->
-    <GFtunliuwuyuan class="booster-station-body" v-if="wpId === 'SXJ_KGDL_TL_GDC_STA'"/>
-    <!-- 山阴荣新 -->
-    <GFshanyinrongxin class="booster-station-body" v-if="wpId === 'SXJ_KGDL_SY_GDC_STA'"/>
-    <!-- 阳高蔚家堡 -->
-    <GFyanggaoweijiabao class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YG_GDC_STA'"/>
-    <!-- 应县晶辉 -->
-    <GFyingxianjinghui class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YX_GDC_STA'"/>
-    <!-- 怀仁初晨 -->
-    <GFhuairenchuchen class="booster-station-body" v-if="wpId === 'SXJ_KGDL_HR_GDC_STA'"/>
-    <!-- 右玉右卫 -->
-    <GFyouyuyouwei class="booster-station-body" v-if="wpId === 'SXJ_KGDL_YY_GDC_STA'"/>
-    <!-- 平鲁阻虎 -->
-    <GFpingluzuhu class="booster-station-body" v-if="wpId === 'SXJ_KGDL_PL_GDC_STA'"/>
-    <!-- 天镇旭升 -->
-    <GFtianzhenxusheng class="booster-station-body" v-if="wpId === 'SXJ_KGDL_TZ_GDC_STA'"/>
-    <ABS class="booster-station-body" v-if="wpId === 'all'" @refData="refData"/>
-  </div>
-</template>
-
-<script>
-import BSHeaderButton from "../factoryMonitor/components/BSHeaderButton.vue";
-
-// 风场
-import GJY from "../factoryMonitor/windPowerPlant/boosterStation/components/GJY.vue";
-import BHB from "../factoryMonitor/windPowerPlant/boosterStation/components/BHB.vue";
-import BHBSQ from "../factoryMonitor/windPowerPlant/boosterStation/components/BHBSQ.vue";
-import DJY from "../factoryMonitor/windPowerPlant/boosterStation/components/DJY.vue";
-import HSM from "../factoryMonitor/windPowerPlant/boosterStation/components/HSM.vue";
-import NJL from "../factoryMonitor/windPowerPlant/boosterStation/components/NJL.vue";
-import PDL from "../factoryMonitor/windPowerPlant/boosterStation/components/PDL.vue";
-import PTZ from "../factoryMonitor/windPowerPlant/boosterStation/components/PTZ.vue";
-import XWT from "../factoryMonitor/windPowerPlant/boosterStation/components/XWT.vue";
-import YTY from "../factoryMonitor/windPowerPlant/boosterStation/components/YTY.vue";
-import YLZ from "../factoryMonitor/windPowerPlant/boosterStation/components/YLZ.vue";
-import YF from "../factoryMonitor/windPowerPlant/boosterStation/components/YF.vue";
-import ZK from "../factoryMonitor/windPowerPlant/boosterStation/components/ZK.vue";
-import MLJ from "../factoryMonitor/windPowerPlant/boosterStation/components/MLJ.vue";
-import GFshanyinrongxin from "../factoryMonitor/photovoltaic/lightBoosterStation/components/shanyinrongxin.vue";
-import GFfangshansunjiashan from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fangshansunjiashan.vue";
-import GFfanshijunran from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fanshijunran.vue";
-import GFhuairenchuchen from "../factoryMonitor/photovoltaic/lightBoosterStation/components/huairenchuchen.vue";
-import GFpingluzuhu from "../factoryMonitor/photovoltaic/lightBoosterStation/components/pingluzuhu.vue";
-import GFtianzhenxusheng from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tianzhenxusheng.vue";
-import GFtunliuwuyuan from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tunliuwuyuan.vue";
-import GFyanggaoweijiabao from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yanggaoweijiabao.vue";
-import GFyingxianjinghui from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yingxianjinghui.vue";
-import GFyouyuyouwei from "../factoryMonitor/photovoltaic/lightBoosterStation/components/youyuyouwei.vue";
-import ABS from "./allBoosterStation"
-
-export default {
-  name: "boosterStation",
-  components: {
-    BSHeaderButton,
-    GJY,
-    BHB,
-    BHBSQ,
-    MLJ,
-    PDL,
-    PTZ,
-    XWT,
-    YTY,
-    YLZ,
-    YF,
-    ZK,
-    NJL,
-    HSM,
-    DJY,
-    GFshanyinrongxin,
-    GFfangshansunjiashan,
-    GFfanshijunran,
-    GFhuairenchuchen,
-    GFpingluzuhu,
-    GFtianzhenxusheng,
-    GFtunliuwuyuan,
-    GFyanggaoweijiabao,
-    GFyingxianjinghui,
-    GFyouyuyouwei,
-    ABS
-  },
-  data() {
-    return {
-      stationType: "-1",
-      wpId: "",
-    };
-  },
-  methods: {
-    renderData(company, wpId) {
-      this.wpId = wpId;
-    },
-    refData(wpId) {
-      this.wpId = wpId;
-    }
-  },
-
-};
-</script>
-<style></style>

File diff suppressed because it is too large
+ 536 - 797
src/views/stateMonitor/focus/syzDetails.vue


+ 887 - 0
src/views/stateMonitor/focus/syzDetails1.vue

@@ -0,0 +1,887 @@
+<template>
+<!--  <el-dialog-->
+<!--      width="90%"-->
+<!--      @open="opened"-->
+<!--      @closed="closed"-->
+<!--      :fullscreen="true"-->
+<!--      :show-close="true"-->
+<!--      class="dialogs"-->
+<!--  >-->
+<!--    <template #title>-->
+<!--      <div class="showTitles currentShowTitles">-->
+<!--        <div class="titles">升压站</div>-->
+<!--      </div>-->
+<!--    </template>-->
+    <div class="bodyy">
+      <el-tabs
+          type="border-card"
+          stretch
+          lazy
+          style="width: 100%; height: 100%"
+          v-model="activeTab"
+          @tab-click="tabClick"
+      >
+        <el-tab-pane
+            class="syzDetailsPaneItem"
+            v-for="(item, index) in syzArray"
+            :key="index"
+            :name="item.id"
+        >
+          <template #label>
+                <span v-if="pageshowMode % 2">
+                <el-badge is-dot v-if="item.isWarning === '1'">
+                    <span>{{ item.name }}</span>
+                </el-badge>
+                <span v-else>{{ item.name }}</span>
+                </span>
+            <span v-else>
+                <el-badge is-dot v-if="item.isWarning === '1'">
+                    <span>{{ item.name }}</span>
+                </el-badge>
+                <span v-else>{{ item.name }}</span>
+                </span>
+          </template>
+          <div class="buttonGroup" v-if="item.id === 'all'">
+            <el-button-group>
+              <el-button type="plain" size="small" @click="changeHeight('D')"
+                         :class="allHeight === 'D' ? 'showSty' : ''">大图标
+              </el-button>
+              <el-button type="plain" size="small" @click="changeHeight('Z')"
+                         :class="allHeight === 'Z' ? 'showSty' : ''">中图标
+              </el-button>
+              <el-button type="plain" size="small" @click="changeHeight('X')"
+                         :class="allHeight === 'X' ? 'showSty' : ''">小图标
+              </el-button>
+            </el-button-group>
+          </div>
+          <div v-if="item.id === 'all'" :style="allpageHeight"
+               style="width: 100%;display: inline-block;overflow-y:auto">
+            <div v-for="(item, index) in allSvgMsgData" :key="index" :style="getStyle(allHeight)">
+              <div class="showAllSvgMsg" @dblclick="dblgetSvgDataFn(item.id)" :class="getWarnstyle(item)">
+                <div class="showAllSvgMsg_top" v-html="item.msg"></div>
+                <div class="showAllSvgMsg_bot">
+                  <span>{{ item.name }}</span>
+                </div>
+              </div>
+            </div>
+          </div>
+          <div id="svg" :style="pageHeight" v-if="item.id !== 'all' && item.id === activeTab" v-html="svgMsg" v-loading="loading"></div>
+          <BHB ref="svgRef" v-if="item.id === 'SXJ_KGDL_BHBF01_SBS'"/>
+          <BHBSQ ref="svgRef" v-if="item.id === 'SXJ_KGDL_BHB3F01_SBS'"/>
+          <DJY ref="svgRef" v-if="item.id === 'SXJ_KGDL_DJYF01_SBS'"/>
+          <GJY ref="svgRef" v-if="item.id === 'SXJ_KGDL_GJYF01_SBS'"/>
+          <HSM ref="svgRef" v-if="item.id === 'SXJ_KGDL_HSMF01_SBS'"/>
+          <MLJ ref="svgRef" v-if="item.id === 'NMM_KGDL_MLJF01_SBS'"/>
+          <NJL ref="svgRef" v-if="item.id === 'SXJ_KGDL_NJLF01_SBS'"/>
+          <PDL ref="svgRef" v-if="item.id === 'SXJ_KGDL_PDLF01_SBS'"/>
+          <PTZ ref="svgRef" v-if="item.id === 'SXJ_KGDL_PTZF01_SBS'"/>
+          <XWT ref="svgRef" v-if="item.id === 'SXJ_KGDL_XWTF01_SBS'"/>
+          <YF ref="svgRef" v-if="item.id === 'SXJ_KGDL_YFF01_SBS'"/>
+          <YLZ ref="svgRef" v-if="item.id === 'SXJ_KGDL_YLZF01_SBS'"/>
+          <YTY ref="svgRef" v-if="item.id === 'SXJ_KGDL_YTYF01_SBS'"/>
+          <ZK ref="svgRef" v-if="item.id === 'SXJ_KGDL_ZKF01_SBS'"/>
+          <FSSJS ref="svgRef" v-if="item.id === 'SXJ_KGDL_FSG01_SBS'"/>
+          <FSJR ref="svgRef" v-if="item.id === 'SXJ_KGDL_JRG01_SBS'"/>
+          <HRCC ref="svgRef" v-if="item.id === 'SXJ_KGDL_HRG01_SBS'"/>
+          <PLZH ref="svgRef" v-if="item.id === 'SXJ_KGDL_PLG01_SBS'"/>
+          <SYRX ref="svgRef" v-if="item.id === 'SXJ_KGDL_SYG01_SBS'"/>
+          <TZXS ref="svgRef" v-if="item.id === 'SXJ_KGDL_TZG01_SBS'"/>
+          <TLYY ref="svgRef" v-if="item.id === 'SXJ_KGDL_TLG01_SBS'"/>
+          <YGWJB ref="svgRef" v-if="item.id === 'SXJ_KGDL_YGG01_SBS'"/>
+          <YXJH ref="svgRef" v-if="item.id === 'SXJ_KGDL_YXG01_SBS'"/>
+          <YYYW ref="svgRef" v-if="item.id === 'SXJ_KGDL_YYG01_SBS'"/>
+          <div class="alarmIconBox" v-if="item.id !== 'all'" @click="switchAlarmSound(index)">
+            <el-tooltip
+                v-if="item.isMute"
+                effect="light"
+                :content="`当前${item.name}升压站报警已消音,请注意`"
+                placement="left"
+            >
+              <i
+                  class="el-icon-close-notification"
+                  style="color: orangered"
+              ></i>
+            </el-tooltip>
+            <i v-else class="el-icon-bell" style="color: rgb(219, 215, 0)"></i>
+          </div>
+        </el-tab-pane>
+      </el-tabs>
+<!--      <CurrentWarningCard-->
+<!--          :currentClass="$store.state.currentWarningCardClass"-->
+<!--          :activeTab="activeTab || 'MHS_FDC'"-->
+<!--          v-if="activeTab !== 'all'"-->
+<!--      />-->
+    </div>
+<!--  </el-dialog>-->
+</template>
+
+<script>
+import BHB from "../factoryMonitor/windPowerPlant/boosterStation/components/BHB.vue";
+import BHBSQ from "../factoryMonitor/windPowerPlant/boosterStation/components/BHBSQ.vue";
+import DJY from "../factoryMonitor/windPowerPlant/boosterStation/components/DJY.vue";
+import GJY from "../factoryMonitor/windPowerPlant/boosterStation/components/GJY.vue";
+import HSM from "../factoryMonitor/windPowerPlant/boosterStation/components/HSM.vue";
+import MLJ from "../factoryMonitor/windPowerPlant/boosterStation/components/MLJ.vue";
+import NJL from "../factoryMonitor/windPowerPlant/boosterStation/components/NJL.vue";
+import PDL from "../factoryMonitor/windPowerPlant/boosterStation/components/PDL.vue";
+import PTZ from "../factoryMonitor/windPowerPlant/boosterStation/components/PTZ.vue";
+import XWT from "../factoryMonitor/windPowerPlant/boosterStation/components/XWT.vue";
+import YF from "../factoryMonitor/windPowerPlant/boosterStation/components/YF.vue";
+import YLZ from "../factoryMonitor/windPowerPlant/boosterStation/components/YLZ.vue";
+import YTY from "../factoryMonitor/windPowerPlant/boosterStation/components/YTY.vue";
+import ZK from "../factoryMonitor/windPowerPlant/boosterStation/components/ZK.vue";
+import FSSJS from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fangshansunjiashan.vue";
+import FSJR from "../factoryMonitor/photovoltaic/lightBoosterStation/components/fanshijunran.vue";
+import HRCC from "../factoryMonitor/photovoltaic/lightBoosterStation/components/huairenchuchen.vue";
+import PLZH from "../factoryMonitor/photovoltaic/lightBoosterStation/components/pingluzuhu.vue";
+import SYRX from "../factoryMonitor/photovoltaic/lightBoosterStation/components/shanyinrongxin.vue";
+import TZXS from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tianzhenxusheng.vue";
+import TLYY from "../factoryMonitor/photovoltaic/lightBoosterStation/components/tunliuwuyuan.vue";
+import YGWJB from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yanggaoweijiabao.vue";
+import YXJH from "../factoryMonitor/photovoltaic/lightBoosterStation/components/yingxianjinghui.vue";
+import YYYW from "../factoryMonitor/photovoltaic/lightBoosterStation/components/youyuyouwei.vue";
+
+import api from "@api/stateMonitor/index.js";
+import CurrentWarningCard from "./currentWarningCard.vue";
+
+export default {
+  props: {
+    activeTabStation: {
+      type: String,
+      default: "",
+    },
+  },
+  components: {
+    BHB,
+    BHBSQ,
+    DJY,
+    GJY,
+    HSM,
+    MLJ,
+    NJL,
+    PDL,
+    PTZ,
+    XWT,
+    YF,
+    YLZ,
+    YTY,
+    ZK,
+    FSSJS,
+    FSJR,
+    HRCC,
+    PLZH,
+    SYRX,
+    TZXS,
+    TLYY,
+    YGWJB,
+    YXJH,
+    YYYW,
+    // CurrentWarningCard
+  },
+  data() {
+    return {
+      activeTab: this.$store.state.activeTab,
+      svgVisible: true,
+      audio: null,
+      timmer: null,
+      syzArray: [],
+      pageshowMode: 0,
+      svgMsg: '',
+      loading: false,
+      allTagidArr: [],
+      starTimer: null,
+      allTagsMS: {},
+      allrefreshData: {},
+      allConditions: {},
+      onlytag: {},
+      allSvgMsgData: [],
+      allHeight: 'D',
+      allWarnData: [],
+      starTimerWarn: null,
+      numm: 0,
+      stationSort: []
+    };
+  },
+  computed: {
+    pageHeight() {
+      return {
+        'height': document.documentElement.clientHeight - 60 + 'px'
+      }
+    },
+    allpageHeight() {
+      return {
+        'height': document.documentElement.clientHeight - 200 + 'px'
+      }
+    },
+  },
+  created() {
+    this.opened()
+  },
+  updated() {
+  },
+  methods: {
+    // 获取升压站报警数据
+    getSyzWarnData() {
+      api.alarmFault().then((res) => {
+        if (res && res.data) {
+          let datas = res.data
+          let arr = []
+          datas.forEach(it => {
+            if (it.rank === '5' && it.category1 === 'SYZ') {
+              // if (it.stationName.indexOf('风电场') !== -1 ) {
+              //     str = it.stationName.substring(0, it.stationName.indexOf('风电场'))
+              // } else if (it.stationName.indexOf('光伏电站') !== -1) {
+              //     str = it.stationName.substring(0, it.stationName.indexOf('光伏电站'))
+              // }
+              arr.push(it.category2)
+            }
+            // let str = ''
+          })
+          this.allWarnData = this.unique(arr)
+        }
+      })
+    },
+    unique(arr) {
+      let newArr = []
+      for (let i = 0; i < arr.length; i++) {
+        if (newArr.indexOf(arr[i]) === -1) {
+          newArr.push(arr[i])
+        }
+      }
+      return newArr
+    },
+    getWarnstyle(item) {
+      let showWarn = ''
+      this.allWarnData.forEach(it => {
+        if (it === item.id) {
+          showWarn = 'warningMaskNew'
+        }
+      })
+      return showWarn
+    },
+    getStyle(type) {
+      let num = null
+      let num1 = null
+      let num2 = null
+      if (type === 'D') {
+        return {
+          'width': '33.3%',
+          'float': 'left',
+          'height': '400px'
+        }
+      } else if (type === 'Z') {
+        num = parseInt(this.allSvgMsgData.length / 4)
+        num1 = this.allSvgMsgData.length % 4
+        num2 = num1 > 0 ? num + 1 : num
+        return {
+          'width': '25%',
+          'float': 'left',
+          'height': (document.documentElement.clientHeight - 200) / num2 + 'px'
+        }
+      } else {
+        num = parseInt(this.allSvgMsgData.length / 5)
+        num1 = this.allSvgMsgData.length % 5
+        num2 = num1 > 0 ? num + 1 : num
+        return {
+          'width': '20%',
+          'float': 'left',
+          'height': (document.documentElement.clientHeight - 200) / num2 + 'px'
+        }
+      }
+
+    },
+    changeHeight(type) {
+      this.allHeight = type
+    },
+    getAllStationtab() {
+      let obj = {
+        id: 'all',
+        name: '全部'
+      }
+      api.getAllStationTab().then((res) => {
+        if (res && res.data) {
+          res.data.unshift(obj)
+          this.syzArray = res.data
+          this.activeTab = res.data[0].id
+          if (this.activeTab === 'all') {
+            let allMsg = res.data
+            this.allSvgMsgData = []
+            this.stationSort = []
+            allMsg.forEach(it => {
+              if (it.id !== 'all') {
+                this.stationSort.push(it.name)
+                this.getallSvgDataFn(it.id, it.name)
+              }
+            })
+            // window.sessionStorage.setItem('allSvgData', [])
+            console.log('allSvgMsgData', this.allSvgMsgData)
+            console.log('stationSort', this.stationSort)
+            console.log('allMsg', allMsg)
+          }
+
+          // this.getSvgDataFn(res.data[0].id)
+        }
+      })
+    },
+    // 获取所有升压站数据
+    getallSvgDataFn(id, name) {
+      let params = {
+        id: id
+      }
+      api.getSvgData(params).then((res) => {
+        let str = ''
+        // str = res.data.substring(res.data.indexOf('<svg'))
+        str = res
+        str = str.replace('<svg', '<svg viewBox="0 -100 1900 1260"')
+        let obj = {
+          id: id,
+          name: name,
+          msg: str
+        }
+        this.allSvgMsgData.push(obj)
+        if (this.allSvgMsgData.length === this.stationSort.length) {
+          let sortArr = []
+          this.stationSort.forEach(itc => {
+            this.allSvgMsgData.forEach(itb => {
+              if (itc === itb.name) {
+                sortArr.push(itb)
+              }
+            })
+          })
+          this.allSvgMsgData = sortArr
+        }
+      })
+    },
+    // 获取升压站数据
+    getSvgDataFn(val) {
+      this.svgMsg = ''
+      this.loading = true
+      let params = {
+        id: val
+      }
+      api.getSvgData(params).then((res) => {
+        if (res && res.data) {
+          let str = ''
+          str = res.data.substring(res.data.indexOf('<svg'))
+          str = str.replace('<svg', '<svg viewBox="0 0 1900 1260"')
+          this.svgMsg = str
+          let html = document.getElementById('svg')
+          let svg1 = document.getElementsByTagName('svg')
+          this.$nextTick(() => {
+            if (svg1) {
+              let allTags = []
+              let allTagsxc = []
+              let status = ['g', 'text', 'rect', 'line', 'polyline', 'circle', 'ellipse', 'polygon']
+              status.forEach(it => {
+                let allgs = []
+                allgs = document.querySelectorAll(it);
+                allTags.push(allgs)
+              })
+              allTags = [...allTags[0], ...allTags[1], ...allTags[2], ...allTags[3], ...allTags[4], ...allTags[5], ...allTags[6], ...allTags[7]]
+              allTags.forEach((it) => {
+                if (it.getAttribute("tagid")) {
+                  allTagsxc.push(it);
+                }
+              });
+              console.log('allTags222=>', allTagsxc)
+              this.allTagidArr = allTagsxc
+              this.getSvgInfo()
+            }
+            console.log('html111=>', html)
+          })
+          this.loading = false
+        }
+      })
+    },
+    // 获取触发器
+    getSvgInfo() {
+      let params = {
+        id: this.activeTab
+      }
+      api.getAllStationSvgInfo(params).then((res) => {
+        if (res && res.data) {
+          if (res.data.tags) {
+            let strarr = []
+            let str = ''
+            for (let i in res.data.tags) {
+              strarr.push(res.data.tags[i].tag)
+            }
+            str = strarr.join(',')
+            this.allTagsMS = res.data.tags
+            this.allConditions = res.data.conditions
+            // this.getrefreshData(str)
+            this.starTimer = setInterval(() => {
+              this.getrefreshData(str)
+            }, 1000)
+          }
+          console.log('SvgInfo333=>', res)
+        }
+      })
+    },
+    // 获取根盾数据
+    getrefreshData(val) {
+      api.refreshData(val).then((res) => {
+        if (res && res.data) {
+          this.allrefreshData = res.data
+          this.refreshDataFn(this.allTagsMS)
+        }
+        console.log('refreshData444=>', res)
+      })
+    },
+    // 刷新数据
+    refreshDataFn(datas) {
+      for (let it in datas) {
+        let tagId = datas[it];
+        this.toRefreshFn(it, tagId);
+      }
+    },
+    // 刷新自定义组件
+    toRefreshFn(val, data) {
+      var tag = this.allrefreshData[data.tag];
+      if (!tag) return;
+      this.allTagidArr.forEach(it => {
+        this.onlytag = {}
+        if (it.attributes.tagid) {
+          if (val === it.attributes.tagid.value) {
+            this.onlytag = it
+            if (it.nodeName === 'polyline') {
+              console.log('onlyTag666', this.onlytag)
+            }
+            if (it.nodeName !== 'text') {
+              if (this.onlytag.attributes.csid) {
+                let csid = this.onlytag.attributes.csid.value.split(';')
+                csid.forEach(ic => {
+                  if (ic) {
+                    if (!this.allConditions[ic].isBinding) {
+                      let num = parseInt(this.allConditions[ic].value) === 0 ? '0' : parseInt(this.allConditions[ic].value)
+                      if (num) {
+                        let num2 = tag.value === 0 ? '0' : tag.value
+                        if (num === num2) {
+                          this.onlytag.setAttribute(this.allConditions[ic].property, this.allConditions[ic].propertyValue)
+                          return
+                        }
+                      }
+                    } else {
+                      this.onlytag.setAttribute(this.allConditions[ic].property, this.allConditions[ic].propertyValue)
+                    }
+                  }
+                })
+              }
+            } else {
+              this.onlytag.textContent = tag.value.toFixed(2)
+            }
+          }
+        }
+      })
+      // console.log('onlyTag555', this.onlytag)
+    },
+    // '全部'界面双击事件
+    dblgetSvgDataFn(name) {
+      this.activeTab = name
+      // this.getSvgDataFn(name)
+    },
+    // 初始化第一次报警并判断是否播放声音
+    initAlarm() {
+      let syzAlarmArray = this.$store.getters.syzAlarmArray;
+
+      const firstAlarmItem = syzAlarmArray.find((ele) => {
+        return !ele.isConfirm && ele.rank === this.$store.state.syzAlarmRank;
+      });
+
+      firstAlarmItem &&
+      this.audioPlay(this.getSound(firstAlarmItem.soundSource));
+
+      firstAlarmItem &&
+      this.$store.getters.syzAlarmArray.forEach((ele) => {
+        if (ele.stationId === firstAlarmItem.stationId) {
+          ele.isConfirm = true;
+        }
+      });
+
+      this.activeTab =
+          this.activeTabStation ||
+          firstAlarmItem?.stationId ||
+          syzAlarmArray.find((ele) => {
+            return ele.rank === this.$store.state.syzAlarmRank;
+          })?.stationId ||
+          this.$store.getters.syzArray[0].id;
+
+      syzAlarmArray.forEach((ele) => {
+        if (ele.stationId === firstAlarmItem?.stationId) {
+          ele.isConfirm = true;
+          this.clearWarningTag(ele.stationId);
+        } else if (
+            !ele.isConfirm &&
+            ele.stationId !== firstAlarmItem?.stationId
+        ) {
+          this.renderWarningTag(ele.stationId);
+        }
+      });
+
+      this.$store.commit("syzAlarmArray", syzAlarmArray);
+    },
+
+    // 定时器循环数据判断小红点渲染及是否播放声音
+    renderAlarm(stationId = "", playSound = true) {
+      let syzAlarmArray = this.$store.getters.syzAlarmArray;
+
+      syzAlarmArray.forEach((ele) => {
+        if (ele.stationId === stationId) {
+          ele.isConfirm = true;
+          this.clearWarningTag(ele.stationId);
+        } else if (!ele.isConfirm && ele.stationId !== stationId) {
+          this.renderWarningTag(ele.stationId);
+        }
+      });
+
+      const res = syzAlarmArray.find((ele) => {
+        return !ele.isConfirm;
+      });
+
+      if (playSound) {
+        // this.audioPlay("./static/sound/syz.mp3");
+      }
+
+      this.$store.commit("syzAlarmArray", syzAlarmArray);
+    },
+
+    // 返回音频文件路径
+    getSound(fileName) {
+      return `./static/sound/${fileName}.mp3`;
+    },
+
+    // 播放音频
+    audioPlay(audioPath) {
+      let soundMuteSelf = [];
+      let soundMuteOther = [];
+
+      this.$store.getters.syzAlarmArray.forEach((ele) => {
+        if (ele.stationId === this.activeTab) {
+          soundMuteSelf.push(ele);
+        } else {
+          soundMuteOther.push(ele);
+        }
+      });
+
+      let alarmSelfLock = soundMuteSelf.some((ele) => {
+        return !ele.isConfirm;
+      });
+
+      let alarmOtherLock = soundMuteOther.some((ele) => {
+        return !ele.isConfirm;
+      });
+
+      if (alarmOtherLock) {
+        this.audio = new Audio(audioPath);
+        this.audio.play();
+      } else if (alarmSelfLock) {
+        this.$store.getters.syzArray.forEach((ele) => {
+          if (ele.stationId === this.activeTab) {
+            ele.isMute = false;
+            this.audio = new Audio(audioPath);
+            this.audio.play();
+          }
+        });
+      } else if (!alarmSelfLock) {
+        this.$store.getters.syzArray.forEach((ele) => {
+          if (ele.stationId === this.activeTab) {
+            if (!ele.isMute) {
+              this.audio = new Audio(audioPath);
+              this.audio.play();
+            }
+          }
+        });
+      }
+    },
+
+    // 显示某个小红点
+    renderWarningTag(stationId = "") {
+      this.$store.getters.syzArray.forEach((ele) => {
+        if (ele.id === stationId) {
+          ele.isWarning = "1";
+        }
+      });
+      this.pageshowMode++;
+    },
+
+    // 清除某个小红点
+    clearWarningTag(stationId = "") {
+      this.$store.getters.syzArray.forEach((ele) => {
+        if (ele.id === stationId) {
+          ele.isWarning = "0";
+        }
+      });
+      this.pageshowMode++;
+    },
+
+    // 切换报警声音开关
+    switchAlarmSound(index) {
+      this.$store.getters.syzArray[index].isMute =
+          !this.$store.getters.syzArray[index].isMute;
+    },
+
+    opened() {
+      // this.initAlarm();
+      this.getAllStationtab()
+      /*this.timmer = setInterval(() => {
+        this.renderAlarm();
+      }, 3000);
+
+      let starTimerWarn = setInterval(() => {
+        this.getSyzWarnData()
+      }, 2000)
+      if (this.activeTabStation) {
+        setTimeout(() => {
+          clearInterval(this.starTimer);
+          this.starTimer = null;
+          this.$store.commit("activeTab", this.activeTabStation);
+          this.renderAlarm(this.activeTabStation, false);
+          if (this.activeTabStation !== 'all') {
+            this.activeTab = this.activeTabStation
+            this.debounce(this.getSvgDataFn(this.activeTabStation), 200)
+          }
+        }, 100);
+      }*/
+    },
+
+    closed() {
+      // this.$refs.svgRef[0].closed()
+      // this.$refs.svgRef[1].closed()
+      // this.$refs.svgRef[2].closed()
+      // this.$refs.svgRef[3].closed()
+      // this.$refs.svgRef[4].closed()
+      clearInterval(this.starTimer);
+      clearInterval(this.starTimerWarn);
+      clearInterval(this.timmer);
+      this.starTimer = null
+      this.starTimerWarn = null
+      this.timmer = null;
+      this.$store.commit("activeTab", "");
+      this.$store.commit("syzDialogShow", false);
+    },
+
+    tabClick(res) {
+      // clearInterval(this.starTimer);
+      // this.starTimer = null;
+      // this.$store.commit("activeTab", res.props.name);
+      /*this.renderAlarm(res.props.name, false);
+      if (res.props.name !== 'all') {
+        this.debounce(this.getSvgDataFn(res.props.name), 200)
+        // this.getSvgDataFn(res.props.name)
+      }*/
+    },
+    debounce(fn, delay) {
+      var delay = delay || 200;
+      var timer;
+      return function () {
+        var th = this;
+        var args = arguments;
+        if (timer) {
+          clearTimeout(timer);
+        }
+        timer = setTimeout(function () {
+          timer = null;
+          fn.apply(th, args);
+        }, delay);
+      };
+    },
+    throttle(fn, interval) {
+      var last;
+      var timer;
+      var interval = interval || 200;
+      return function () {
+        var th = this;
+        var args = arguments;
+        var now = +new Date();
+        if (last && now - last < interval) {
+          clearTimeout(timer);
+          timer = setTimeout(function () {
+            last = now;
+            fn.apply(th, args);
+          }, interval);
+        } else {
+          last = now;
+          fn.apply(th, args);
+        }
+      }
+    }
+  },
+  watch: {
+    "$store.state.syzArray"(res) {
+      this.syzArray = res;
+    },
+  },
+};
+</script>
+
+<style lang="less" scoped>
+.bodyy {
+  display: flex;
+  flex-direction: row;
+  background-color: black;
+  width: 98%;
+  margin-top: -30px;
+  height: 90vh;
+  position: relative;
+  overflow: hidden;
+  margin-left: 44px;
+
+  .syzDetailsPaneItem {
+    position: relative;
+
+    .buttonGroup {
+      margin-bottom: 10px;
+      display: flex;
+      // justify-content: end;
+      float: right;
+
+      .el-button-group {
+        .el-button {
+          min-height: 30px !important;
+        }
+
+        .showSty {
+          color: #409eff;
+          border-color: #c6e2ff;
+          background-color: #ecf5ff;
+          outline: 0;
+        }
+      }
+    }
+
+    .warningMaskNew {
+      background-color: rgba(186, 50, 55, 0.5);
+      animation: fade 2000ms infinite;
+      -webkit-animation: fade 2000ms infinite;
+    }
+
+    @keyframes fade {
+      from {
+        opacity: 0.7;
+      }
+
+      50% {
+        opacity: 0.3;
+      }
+
+      to {
+        opacity: 0.7;
+      }
+    }
+
+    @-webkit-keyframes fade {
+      from {
+        opacity: 0.7;
+      }
+
+      50% {
+        opacity: 0.3;
+      }
+
+      to {
+        opacity: 0.7;
+      }
+    }
+
+    .showAllSvgMsg {
+      width: calc(100% - 15px);
+      height: calc(100% - 15px);
+      // padding: 20px;
+      // margin-bottom: 20px;
+      // background: #3a3a3a;
+      // border: 3px solid #3a3a3a;
+      border: 3px solid #646464;
+      border-radius: 10px;
+
+      .showAllSvgMsg_top {
+        border-radius: 10px 10px 0 0;
+        height: calc(100% - 40px);
+        width: 100%;
+        // background: #fff;
+      }
+
+      .showAllSvgMsg_bot {
+        background: #3a3a3a;
+        border-radius: 0 0 8px 8px;
+        height: 40px;
+        text-align: center;
+
+        span {
+          position: relative;
+          top: 10px;
+          font-weight: bold;
+          color: #fff;
+        }
+      }
+    }
+
+    .alarmIconBox {
+      position: absolute;
+      right: 0;
+      top: 0;
+      cursor: pointer;
+
+      i {
+        font-size: 20px;
+      }
+    }
+  }
+}
+</style>
+<style lang="less">
+.bodyy {
+  .pop-up-main,
+  .paln-box {
+    width: 100%;
+    height: 90vh;
+    overflow: hidden;
+    position: relative;
+  }
+
+  .movableItem {
+    // width: 1920PX !important;
+    // height: 800PX !important;
+
+    .svg {
+      //   width: 100%;
+      //   height: 92%;
+      margin-left: 0;
+      margin-top: 8%;
+    }
+  }
+
+  .el-badge__content.is-fixed.is-dot {
+    right: 0;
+    top: 10px;
+    background: #f25656;
+    animation: twinkle 0.75s infinite;
+    border-color: transparent;
+  }
+
+  @keyframes twinkle {
+    0% {
+      opacity: 0;
+    }
+    50% {
+      opacity: 1;
+    }
+    100% {
+      opacity: 0;
+    }
+  }
+}
+
+.currentShowTitles {
+  width: 100%;
+  position: relative;
+
+  .alarIcon {
+    position: absolute;
+    right: 50px;
+    top: 5;
+    font-size: 20px;
+    cursor: pointer;
+  }
+}
+
+</style>

+ 2 - 4
src/views/stateMonitor/index.vue

@@ -4,10 +4,8 @@
 
 <script>
 export default {
-  name: "stateMonitor", //全监视
+  name: "stateMonitor", //全监视
 };
 </script>
 
-<style>
-
-</style>
+<style></style>

+ 92 - 117
src/views/stateMonitor/powerPredictMatrix/components/multiple-line-chart.vue

@@ -24,23 +24,8 @@ export default {
       type: Array,
       default: () => {},
     },
-    // 单位
-    units: {
-      type: Array,
-      default: () => ["MW", "m/s"],
-    },
-    // 颜色
-    color: {
-      type: Array,
-      default: () => [
-        "#323E6F",
-        "#1DA0D7",
-        "#02BB4C",
-        "#DB5520",
-        "#EDB32F",
-        "#EDEB2F",
-      ],
-    },
+    isDouble: { type: Boolean, default: false },
+    type: { type: String, default: "" },
   },
   data() {
     return {
@@ -50,8 +35,8 @@ export default {
         { name: "实际功率", code: "sjgl", color: "#4B55AE" },
         { name: "理论功率", code: "llgl", color: "#1C99FF" },
         { name: "预测功率", code: "ycgl", color: "#F8DE5B" },
-        { name: "实际风速", code: "pjfs", color: "#05BB4C" },
-        { name: "预测风速", code: "ycfs", color: "#FF8300" },
+        { name: "实际风速", name1: "实际光照", code: "pjfs", color: "#05BB4C" },
+        { name: "预测风速", name1: "预测光照", code: "ycfs", color: "#FF8300" },
       ],
     };
   },
@@ -62,33 +47,61 @@ export default {
         for (let key in this.chartData) {
           this.chartName.forEach((ele) => {
             if (ele.code == key) {
-              series.push({
-                name: ele.name,
-                type: "line",
-                showAllSymbol: true,
-                symbolSize: 0,
-                smooth: true,
-                lineStyle: {
-                  normal: {
-                    width: 1,
+              if (ele.code.includes("fs")) {
+                series.push({
+                  name: this.type == -1 ? ele.name : ele.name1,
+                  type: "line",
+                  symbol: "circle",
+                  showAllSymbol: true,
+                  yAxisIndex: 1,
+                  symbolSize: 0,
+                  smooth: true,
+                  lineStyle: {
+                    normal: {
+                      width: 1,
+                      color: ele.color,
+                    },
+                    //   borderColor: "rgba(0,0,0,.4)",
+                  },
+                  itemStyle: {
+                    color: ele.color,
+                  },
+                  tooltip: {
+                    show: true,
+                  },
+
+                  data: this.chartData[key],
+                });
+              } else {
+                series.push({
+                  name: this.type == -1 ? ele.name : ele.name1,
+                  type: "line",
+                  symbol: "circle",
+                  showAllSymbol: true,
+                  yAxisIndex: 0,
+                  symbolSize: 0,
+                  smooth: true,
+                  lineStyle: {
+                    normal: {
+                      width: 1,
+                      color: ele.color,
+                    },
+                    //   borderColor: "rgba(0,0,0,.4)",
+                  },
+                  itemStyle: {
                     color: ele.color,
                   },
-                  //   borderColor: "rgba(0,0,0,.4)",
-                },
-                itemStyle: {
-                  color: ele.color,
-                },
-                tooltip: {
-                  show: true,
-                },
+                  tooltip: {
+                    show: true,
+                  },
 
-                data: this.chartData[key],
-              });
+                  data: this.chartData[key],
+                });
+              }
             }
           });
         }
       }
-      console.log(series);
       return series;
     },
     // lengend() {
@@ -102,75 +115,29 @@ export default {
   },
   methods: {
     initChart() {
-      //   console.log(this.chartData);
-      console.log(this.series);
       let chart = echarts.init(this.$el);
-      //图表所需数据区
-      var charts = {
-        names: ["点击量", "访客"],
-        lineX: [
-          "2018-11-11 17:01",
-          "2018-11-11 17:02",
-          "2018-11-11 17:03",
-          "2018-11-11 17:04",
-          "2018-11-11 17:05",
-          "2018-11-11 17:06",
-          "2018-11-11 17:07",
-          "2018-11-11 17:08",
-          "2018-11-11 17:09",
-          "2018-11-11 17:10",
-          "2018-11-11 17:11",
-          "2018-11-11 17:12",
-          "2018-11-11 17:13",
-          "2018-11-11 17:14",
-          "2018-11-11 17:15",
-          "2018-11-11 17:16",
-          "2018-11-11 17:17",
-          "2018-11-11 17:18",
-          "2018-11-11 17:19",
-          "2018-11-11 17:20",
-        ],
-        useNum: [
-          4.51, 3.52, 3.03, 5.34, 0.95, 2.36, 2.17, 3.28, 1.59, 1.51, 2.31,
-          1.92, 4.53, 5.24, 1.65, 2.36, 5.27, 3.28, 1.29, 5.3,
-        ],
-        visitorNum: [
-          360, 545, 80, 192, 330, 580, 192, 80, 250, 453, 352, 28, 625, 345, 65,
-          325, 468, 108, 253, 98,
-        ],
-      };
-      var color = ["rgba(23, 255, 243", "rgba(255,100,97"];
-
-      //y轴样式  arrIndex相关目标数组的index值,lineYData目标y轴值
-      function getLineYSeries(arrIndex, lineYData) {
-        var data = {
-          name: charts.names[arrIndex],
-          type: "line",
-          yAxisIndex: arrIndex, //使用相对的y轴
-          color: color[arrIndex] + ")",
-          smooth: true,
-          symbol: "circle",
-          symbolSize: 5,
-          data: lineYData,
-        };
-
-        return data;
-      }
-
-      var lineY = [getLineYSeries(0), getLineYSeries(1, charts.visitorNum)];
 
       //图表配置
       var option = {
         color: this.color,
+
         tooltip: {
           trigger: "axis",
         },
         legend: {
-          data: this.chartName.map((item) => item.name),
-            textStyle: {
-              fontSize: 12,
-              color: "#93989A",
-            },
+          data: this.chartName.map((item) => {
+            return {
+              name: item.name,
+              itemStyle: {
+                color: item.color,
+              },
+            };
+          }),
+          itemHeight: 10,
+          textStyle: {
+            fontSize: 12,
+            color: "#93989A",
+          },
           top: "5%",
           right: "15%",
         },
@@ -183,11 +150,11 @@ export default {
         },
         xAxis: {
           type: "category",
-          boundaryGap: false,
+          boundaryGap: true,
           data: this.chartData?.xAxis || [],
           axisLabel: {
             textStyle: {
-              color: "rgb(255,255,255)",
+              color: "#93989A",
             },
             // formatter: function (params) {
             //   return params.split(" ")[0] + "\n" + params.split(" ")[1];
@@ -198,7 +165,7 @@ export default {
           },
           axisLine: {
             lineStyle: {
-              color: "rgb(255,255,255)",
+              color: "#93989A",
             },
           },
         },
@@ -206,47 +173,55 @@ export default {
           {
             name: "MW",
             type: "value",
+            nameTextStyle: {
+              color: "#93989A",
+            },
             axisLabel: {
               formatter: "{value}",
               textStyle: {
-                color: "rgb(255,255,255)",
+                color: "#93989A",
               },
             },
             splitLine: {
               show: true,
               lineStyle: {
-                color: "rgb(255,255,255,0.4)",
+                color: "rgba(96,103,105,0.3)",
                 type: "dashed",
               },
             },
-            axisLine: {
-              lineStyle: {
-                color: "rgb(255,255,255)",
-              },
-            },
           },
           {
-            name: "m/s",
+            name: this.type == -1 ? "m/s" : "W/m²",
+            nameTextStyle: {
+              color: "#93989A",
+            },
             type: "value",
             axisLabel: {
               show: true,
               formatter: "{value}",
               textStyle: {
-                color: "rgb(255,255,255)",
+                color: "#93989A",
               },
             },
             splitLine: {
               show: false,
             },
-            axisLine: {
-              lineStyle: {
-                color: "rgb(255,255,255)",
-              },
-            },
           },
         ],
         series: this.series || [],
       };
+      if (this.isDouble) {
+        option.title = {
+          text: this.chartData?.name,
+          top: "5%",
+          left: "35%",
+          textStyle: {
+            fontSize: 25,
+            color: "rgba(255,255,255,0.8)",
+            fontFamily: 'Arial, "SourceHanSans", "Microsoft YaHei", sans-serif',
+          },
+        };
+      }
       chart.setOption(option);
     },
   },
@@ -280,6 +255,6 @@ export default {
 .chart {
   width: 100%;
   height: 100%;
-  display: inline-block;
+  //   display: inline-block;
 }
 </style>

+ 149 - 47
src/views/stateMonitor/powerPredictMatrix/index.vue

@@ -1,30 +1,30 @@
 <template>
   <div class="page-wrapper">
     <!-- 头部按钮选项 -->
-    <HeaderNav @typeFlag="typeFlag" :isAll="true" />
+    <HeaderNav @firstRender="firstRender" :isAll="true" />
     <div class="chart-wrapper">
       <div
         class="chart-item"
         v-for="(item, index) in list"
         :key="index"
-        @click="handleClick(item.name)"
+        @dblclick="handleClick(list[index]?.name, index)"
       >
         <div class="chart-item-name">
-          <p class="text">{{ item.name }}</p>
+          <p class="text">{{ list[index]?.name }}</p>
         </div>
         <div class="chart-item-chart">
           <multipleLineChartVue
             ref="multipLineChart"
             height="100%"
             width="100%"
-            :chartData="item"
+            :chartData="list[index]"
           />
         </div>
       </div>
     </div>
     <el-dialog
       class="dialogs"
-      width="90%"
+      width="75%"
       top="120px"
       v-model="displayDialog"
       :show-close="true"
@@ -48,7 +48,7 @@
                 size="mini"
                 placeholder="选择日期"
                 popper-class="date-select"
-                format="YYYY-MM-DD"
+                value-format="YYYY-MM-DD"
               >
               </el-date-picker>
             </div>
@@ -62,17 +62,47 @@
                 type="date"
                 popper-class="date-select"
                 placeholder="选择日期"
-                format="YYYY-MM-DD"
+                value-format="YYYY-MM-DD"
               >
               </el-date-picker>
             </div>
           </div>
           <div class="btns">
-            <el-button round size="mini" class="searchColor">查 询</el-button>
+            <el-button
+              round
+              size="mini"
+              class="searchColor"
+              @click="handleSearch"
+              >查 询</el-button
+            >
           </div>
         </div>
-        <div class="dialog-chart">
-          <multipleLineChartVue ref="multipLineChart" :chartData="chartData" />
+        <div class="dialog-chart" v-if="!isDouble">
+          <multipleLineChartVue
+            ref="multipLineChart"
+            :type="activeTab"
+            :chartData="singleChartData"
+          />
+        </div>
+        <div class="dialog-chart" v-if="isDouble">
+          <div class="carousel-wrapper">
+            <el-carousel trigger="click" height="100%" :autoplay="false">
+              <el-carousel-item
+                v-for="(chart, key) in doubleChartData"
+                :key="key"
+                :name="doubleChartData[key]?.name"
+              >
+                <multipleLineChartVue
+                  ref="multipLineChart"
+                  :chartData="doubleChartData[key]"
+                  width="1392px"
+                  :type="activeTab"
+                  height="580px"
+                  :isDouble="isDouble"
+                />
+              </el-carousel-item>
+            </el-carousel>
+          </div>
         </div>
       </div>
     </el-dialog>
@@ -85,7 +115,7 @@ import multipleLineChartVue from "./components/multiple-line-chart.vue";
 import { GetAllPowerData, GetPowerData } from "@/api/factoryMonitor/index.js";
 import dayjs from "dayjs";
 export default {
-  name: "PowerCurveMatrix", //全监视
+  name: "PowerCurveMatrix", //全监视
   data() {
     return {
       activeTab: -1,
@@ -95,6 +125,12 @@ export default {
       beginDate: "",
       endDate: "",
       format: "YYYY-MM-DD",
+      doubleChartData: [],
+      singleChartData: {},
+      isDouble: false,
+      showWpid: "",
+      isSearch: false,
+      timer: null,
     };
   },
   components: {
@@ -103,10 +139,19 @@ export default {
   },
   created() {
     this.beginDate = dayjs().startOf("day").format(this.format);
-    this.endDate = dayjs().add(10, "day").format(this.format);
+    this.endDate = dayjs().add(3, "day").format(this.format);
     this.init();
   },
+  mounted() {
+    this.timer = setInterval(() => {
+      this.init();
+    }, 15 * 60 * 1000);
+  },
   methods: {
+    firstRender(tab) {
+      this.activeTab = tab;
+      this.init();
+    },
     init() {
       GetAllPowerData({
         type: this.activeTab == -1 ? "F" : "G",
@@ -114,73 +159,130 @@ export default {
         endDate: this.endDate,
       }).then(({ code, data }) => {
         if (code == 200) {
-          let resData = JSON.parse(JSON.stringify(data));
-          for (let key in resData) {
-            resData[key] = {
-              name: "",
-              pjfs: [],
-              ycfs: [],
-              sjgl: [],
-              ycgl: [],
-              llgl: [],
-              lengend: [],
-              xAxis: [],
-            };
-          }
-          for (let index in data) {
-            resData[index].name = data[index][0].name;
-            data[index].forEach((ele) => {
-              resData[index].pjfs.push(ele.pjfs);
-              resData[index].ycfs.push(ele.ycfs);
-              resData[index].sjgl.push(ele.sjgl);
-              resData[index].ycgl.push(ele.ycgl);
-              resData[index].llgl.push(ele.llgl);
-              resData[index].xAxis.push(
-                dayjs(ele.hours).format("YYYY-MM-DD HH:mm:ss")
-              );
-            });
-          }
-        //   console.log(resData);
-          this.list = resData;
+          this.list = this.dealRes(data);
         }
       });
     },
+    dealRes(res) {
+      let resData = JSON.parse(JSON.stringify(res));
+      for (let key in resData) {
+        resData[key] = {
+          name: "",
+          pjfs: [],
+          ycfs: [],
+          sjgl: [],
+          ycgl: [],
+          llgl: [],
+          xAxis: [],
+        };
+      }
+      for (let index in res) {
+        resData[index].name = res[index][0].name;
+        res[index].forEach((ele) => {
+          resData[index].pjfs.push(ele.pjfs);
+          resData[index].ycfs.push(ele.ycfs);
+          resData[index].sjgl.push(ele.sjgl);
+          resData[index].ycgl.push(ele.ycgl);
+          resData[index].llgl.push(ele.llgl);
+          resData[index].xAxis.push(dayjs(ele.hours).format("MM-DD HH:mm:ss"));
+        });
+      }
+      return resData;
+    },
     typeFlag(activeTab) {
       this.activeTab = activeTab;
     },
-    handleClick(name) {
-      this.displayDialog = true;
+    handleClick(name, id) {
       this.showName = name;
+      this.showWpid = id;
       this.beginDate = dayjs().startOf("day").format(this.format);
       this.endDate = dayjs().add(10, "day").format(this.format);
+      this.getPowerData();
+    },
+    getPowerData() {
+      GetPowerData({
+        wpId: this.showWpid,
+        beginDate: this.beginDate,
+        endDate: this.endDate,
+      }).then((res) => {
+        if (res && res.code == 200) {
+          if (!this.isSearch) {
+            this.displayDialog = true;
+          }
+          if (Object.keys(res.data).length < 2) {
+            this.isDouble = false;
+            this.singleChartData = this.dealRes(res.data)[this.showWpid];
+          } else if (Object.keys(res.data).length >= 2) {
+            this.isDouble = true;
+            this.doubleChartData = this.dealRes(res.data);
+            console.log(this.doubleChartData);
+          }
+        }
+      });
+    },
+    handleSearch() {
+      this.isSearch = true;
+      this.getPowerData();
     },
   },
 };
 </script>
 
 <style scoped lang="less">
+.carousel-wrapper {
+  height: 100%;
+  width: 100%;
+  .el-carousel {
+    height: 100%;
+    width: 100%;
+    .el-carousel__container {
+      height: 100%;
+      width: 100%;
+      .el-carousel__item {
+        height: 100%;
+        width: 100%;
+      }
+    }
+  }
+}
+.el-carousel__item h3 {
+  color: #475669;
+  opacity: 0.75;
+  line-height: 150px;
+  margin: 0;
+  text-align: center;
+}
+
+.el-carousel__item:nth-child(2n) {
+  //   background-color: #99a9bf;
+}
+
+.el-carousel__item:nth-child(2n + 1) {
+  //   background-color: #d3dce6;
+}
 .page-wrapper {
   height: 100%;
 }
 .chart-wrapper {
   height: calc(100% - 57px);
+  overflow: auto;
   padding: 0 20px 10px 20px;
   display: grid;
   grid-template-columns: auto auto;
-  grid-auto-rows: 232px;
-  //   grid-auto-columns: 935px;
+  grid-auto-rows: 256px;
   grid-gap: 20px;
   .chart-item {
     width: 935px;
-    height: 232px;
+    height: 256px;
     // border: 1px solid #fff;
     display: flex;
     align-items: center;
-    background: url("~@/assets/imgs/power-bg.png") no-repeat;
+    background: url("~@/assets/imgs/power-bg1.png") no-repeat;
+
     .chart-item-name {
       display: flex;
       width: 50px;
-      height: 232px;
+      height: 256px;
       border-right: 1px solid #3a3f43;
       justify-content: center;
       align-items: center;