xushili 1 jaar geleden
bovenliggende
commit
0a04deae98

+ 3 - 0
.env.development

@@ -2,6 +2,9 @@
 # VUE_APP_API=http://192.168.1.108:6060
 # VUE_APP_Matrix=http://192.168.1.108:6060
 
+# VUE_APP_API=http://localhost:6060
+# VUE_APP_Matrix=http://localhost:6060
+
 VUE_APP_API=http://10.81.3.153:6060
 # 经济运行 安全监视
 VUE_APP_Matrix=http://10.81.3.153:6060

+ 3 - 3
src/router/index.js

@@ -342,14 +342,14 @@ export const asyncRoutes = [
       {
         path: "syzmatrix", // 升压站矩阵
         name: "SYZMatrix",
-        component: () => import("@/views/stateMonitor/focus/syzDetails"),
+        component: () => import("@/views/stateMonitor/focus/agcDetails"),
         meta: {
           title: "升压站矩阵",
           icon: "svg-mx-matrix",
           permissions: ["jn_mxjz", "*:*:*"],
         },
       },
-      {
+      /*{
         path: "agcmatrix", // AGC矩阵
         name: "AGCMatrix",
         component: () => import("@/views/stateMonitor/focus/agcDetails"),
@@ -358,7 +358,7 @@ export const asyncRoutes = [
           icon: "svg-mx-matrix",
           permissions: ["jn_mxjz", "*:*:*"],
         },
-      }
+      }*/
     ],
   },
   //   经济运行

+ 419 - 0
src/views/stateMonitor/factoryMonitor/components/BSHeaderButton.vue

@@ -0,0 +1,419 @@
+<template>
+  <el-row class="headerButton">
+    <div class="icon">
+      <i
+        class="svg-icon svg-icon-md"
+        :class="type == -1 ? 'svg-icon-green' : 'svg-icon-orange'"
+      >
+        <SvgIcon
+          :svgid="type == -1 ? 'svg-wind-site' : 'svg-photovoltaic'"
+        ></SvgIcon
+      ></i>
+    </div>
+    <div class="childNode">
+      <div class="stationList">
+        <div
+          class="station-name"
+          :class="stationCode == item.nemCode ? 'station-actived' : ''"
+          @click="stationChanged(item.nemCode)"
+          v-for="(item, index) in pageData"
+          :key="index"
+        >
+          {{ item.aname }}
+        </div>
+      </div>
+
+      <el-pagination
+        v-if="allPowerStation.length > pageSize"
+        @size-change="handleSizeChange"
+        @current-change="handleCurrentChange"
+        :current-page="currentPage"
+        :page-size="pageSize"
+        :total="pageTotal"
+        layout="prev,  next"
+      >
+      </el-pagination>
+    </div>
+  </el-row>
+</template>
+
+<script>
+
+import { headerCompany } from "@/api/headerNav/header.js";
+import {
+  GetStationByCompany,
+  GetZhenquByPj,
+  GetProjectLandforms,
+} from "@/api/factoryMonitor/index.js";
+import SvgIcon from "@com/coms/icon/svg-icon.vue";
+import { getProject } from "@/api/performance";
+
+export default {
+  name: "headerButton2",
+  props: {
+    type: String,
+    showType: {
+      type: Boolean,
+      default: false,
+    },
+  },
+  components: { SvgIcon },
+  data() {
+    return {
+      tab: "JZ",
+      OrganizationList: [
+        {
+          label: "清洁能源",
+          value: "KGDL_FGS",
+        },
+      ],
+      PowerStation: [],
+      projectList: [],
+      projectObj: {},
+      project: "",
+      stationCode: null,
+      stationName: "",
+      checkNode: "",
+      rightIndex: 0,
+      endIndex: null,
+      leftIndex: this.type,
+      stationIndex: 0,
+      allPowerStation: [],
+      // 分页的数据
+      pageData: [],
+      // 总数据量 默认为 0
+      pageTotal: 0,
+      // 当前页 默认是第一页
+      currentPage: 1,
+      // 每页大小 默认每页10条数据
+      pageSize: 12,
+      localWpinfo: {},
+      localCompanyid: "",
+    };
+  },
+  created() {
+    this.localWpinfo = JSON.parse(localStorage.getItem("wpInfo")) || {};
+    this.localCompanyid = localStorage.getItem("companyId");
+    //获取区域公司
+    this.$nextTick(() => {
+      this.getOrganizationList();
+    });
+  },
+  methods: {
+    handleTabChanged(val) {
+      this.$emit(
+        "renderData",
+        this.checkNode,
+        this.stationCode,
+        this.stationName,
+        val
+      );
+    },
+    //获取区域公司
+    getOrganizationList() {
+      headerCompany({}).then(({ data }) => {
+        let company = data.data.map((item) => {
+          return { label: item.aname, value: item.nemCode, ...item };
+        });
+        let menu = this.$route.path.includes("windPowerPlant");
+        let gf = this.localCompanyid
+          ? this.localCompanyid.includes("GF")
+          : false;
+        this.OrganizationList = [...this.OrganizationList, ...company];
+        this.checkNode = this.localCompanyid
+          ? menu
+            ? gf
+              ? this.OrganizationList[0].value
+              : this.localCompanyid
+            : gf
+            ? this.localCompanyid
+            : this.OrganizationList[0].value
+          : this.OrganizationList[0].value;
+        if (!this.localCompanyid) {
+          this.localCompanyid = this.OrganizationList[0].value;
+          localStorage.setItem("companyId", this.OrganizationList[0].value);
+        }
+        this.getStationList();
+      });
+    },
+    // 改变每页大小的回调
+    handleSizeChange(val) {
+      this.pageSize = val;
+
+      this.pageData = this.queryByPage();
+    },
+    // 改变当前页的回调
+    handleCurrentChange(val) {
+      this.currentPage = val;
+
+      this.pageData = this.queryByPage();
+    },
+    // 获取全部场站数据
+    async getStationList() {
+      const { data } = await GetStationByCompany({
+        // companyids: this.checkNode,
+        // type: this.type,
+        companyids: "all",
+        type: 0,
+      });
+      if (data.data.length) {
+        this.allPowerStation = data.data;
+        this.allPowerStation.unshift({nemCode:"all",aname:"全部"})
+        let index = Object.keys(this.localWpinfo).length
+          ? this.allPowerStation.findIndex(
+              (item) => item.nemCode == this.localWpinfo.wpid
+            )
+          : -1;
+        if (index >= this.pageSize) {
+          this.currentPage = 2;
+        }
+        if (index == -1) {
+          this.localWpinfo = {};
+          localStorage.removeItem("wpInfo");
+        }
+        this.pageTotal = data.data.length;
+        this.pageData = this.queryByPage();
+        this.stationCode = Object.keys(this.localWpinfo).length ? this.localWpinfo.wpid : this.pageData[0].nemCode;
+        this.stationName = Object.keys(this.localWpinfo).length ? this.localWpinfo.wpname : this.pageData[0].name;
+        if (this.showType) {
+          this.getProject(this.stationCode);
+        } else {
+          this.$emit(
+            "renderData",
+            this.checkNode,
+            this.stationCode,
+            this.pageData[0].name,
+            this.tab
+          );
+        }
+        if (!Object.keys(this.localWpinfo).length) {
+          this.localWpinfo = {
+            wpid: this.pageData[0].nemCode,
+            wpname: this.pageData[0].name,
+          };
+          localStorage.setItem("wpInfo", JSON.stringify(this.localWpinfo));
+        }
+      } else {
+        this.allPowerStation = [];
+        this.pageTotal = 0;
+        this.pageData = [];
+        this.stationCode = "";
+        this.stationName = "";
+        this.projectList = [];
+        this.$emit("renderData");
+      }
+    },
+    getProject(stationCode) {
+      getProject({ wpids: stationCode }).then(({ data: res }) => {
+        this.projectList = res.data;
+        this.project = this.projectList[0].nemCode;
+        this.getWtList(this.project);
+      });
+    },
+    getWtList(project) {
+      if (this.type == -1) {
+        GetProjectLandforms({ foreignkeyid: project }).then(({ data }) => {
+          this.projectObj = data.data;
+          this.$emit(
+            "renderData",
+            this.checkNode,
+            this.stationCode,
+            this.stationName,
+            this.project,
+            this.projectObj
+          );
+        });
+      } else {
+        GetZhenquByPj({ pjid: project }).then(({ data }) => {
+          this.projectObj = data.data;
+          this.$emit(
+            "renderData",
+            this.checkNode,
+            this.stationCode,
+            this.stationName,
+            this.project,
+            this.projectObj
+          );
+        });
+      }
+    },
+    //期次切换
+    projectChanged(val) {
+      this.project = val;
+      this.getWtList(this.project);
+    },
+    //场站切换
+    stationChanged(val) {
+      this.stationCode = val;
+      this.stationName = this.allPowerStation.find((item) => {
+        return item.nemCode == val;
+      })?.name;
+      if (this.showType) {
+        this.getProject(this.stationCode);
+      } else {
+        this.$emit(
+          "renderData",
+          this.checkNode,
+          this.stationCode,
+          this.stationName,
+          this.tab
+        );
+      }
+      this.localWpinfo = { wpid: val, wpname: this.stationName };
+      localStorage.setItem("wpInfo", JSON.stringify(this.localWpinfo));
+    },
+    // 实现分页的方法
+    queryByPage() {
+      // 起始位置 = (当前页 - 1) x 每页的大小
+      const start = (this.currentPage - 1) * this.pageSize;
+      // 结束位置 = 当前页 x 每页的大小
+      const end = this.currentPage * this.pageSize;
+
+      return this.allPowerStation.slice(start, end);
+    },
+  },
+};
+</script>
+<style lang="less" scoped>
+/deep/.el-pagination {
+  .btn-prev {
+    margin-right: 10px;
+  }
+}
+/deep/.el-select {
+  .el-input__inner {
+    border-radius: 12.5px !important;
+  }
+}
+.headerButton {
+  display: flex;
+  align-items: center;
+  flex-wrap: nowrap;
+  padding: 10px 0 15px 0;
+}
+/deep/.el-radio-group {
+  height: 28px;
+  .el-radio-button__original-radio + .el-radio-button__inner {
+    background-color: rgba(5, 187, 76, 0.2);
+    border: 1px solid #3b6c53;
+    color: #b3b3b3;
+    font-size: 14px;
+    //   background-color: rgba(5, 187, 76, 0.5);
+    //   color: #ffffff;
+  }
+  .el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) {
+    box-shadow: unset;
+  }
+  .el-radio-button__inner:hover {
+    border: 1px solid #3b6c53;
+  }
+  .el-radio-button__original-radio:checked + .el-radio-button__inner {
+    // background-color: rgba(5, 187, 76, 0.2);
+    // border: 1px solid #3b6c53;
+    // color: #b3b3b3;
+    // font-size: 14px;
+    box-shadow: unset;
+
+    background-color: rgba(5, 187, 76, 0.5);
+    color: #ffffff;
+  }
+}
+.light {
+  background-color: rgba(255, 131, 0, 0.6) !important;
+  color: #fff !important;
+}
+
+.check {
+  width: 100px;
+  height: 25px;
+  line-height: 23px;
+  box-sizing: border-box;
+  background-color: #2a374f;
+  border-radius: 12.5px;
+  border: 1px solid #43516b;
+  color: #b3b3b3;
+  margin-left: 5px;
+
+  > span:first-child {
+    border-top-left-radius: 12.5px;
+    border-bottom-left-radius: 12.5px;
+  }
+
+  > span:last-child {
+    border-top-right-radius: 12.5px;
+    border-bottom-right-radius: 12.5px;
+  }
+
+  > span {
+    display: inline-block;
+    width: 50%;
+    text-align: center;
+  }
+}
+
+.icon {
+  margin: 0 15px;
+  padding-top: 6px;
+}
+
+.icon .icon-wind {
+  color: #1c99ff;
+}
+
+.icon .icon-Photovoltaic-pv {
+  color: rgba(255, 131, 0, 1);
+}
+
+.childNode {
+  display: flex;
+  flex: 1 0 auto;
+  align-items: center;
+  white-space: nowrap;
+  .stationList {
+    display: flex;
+    width: 100%;
+    align-items: center;
+    div {
+      padding: 0 20px;
+      height: 25px;
+      line-height: 25px;
+      border-radius: 12.5px;
+      background-color: rgba(96, 103, 105, 0.2);
+      color: #b3b3b3;
+      margin-right: 5px;
+      border: 1px solid #606769;
+    }
+    .station-name {
+      font-size: 12px;
+      padding: 0 18px;
+      &.station-actived {
+        color: #fff;
+        background-color: rgba(75, 85, 174, 0.6);
+        border-color: rgba(75, 85, 174, 0.6);
+      }
+    }
+  }
+}
+.more {
+  position: absolute;
+  top: 10px;
+  right: -60px;
+  display: flex;
+  .button {
+    width: 25px;
+    height: 25px;
+    line-height: 25px;
+    text-align: center;
+    border-radius: 50%;
+    background-color: rgba(0, 70, 199, 0.2);
+    color: rgba(179, 179, 179, 1);
+  }
+  .button {
+    margin-right: 5px;
+  }
+}
+.activeBtn {
+  background-color: rgba(0, 70, 199, 0.4) !important;
+  color: #fff !important;
+}
+</style>

+ 21 - 21
src/views/stateMonitor/factoryMonitor/photovoltaic/lightBoosterStation/index.vue

@@ -1,58 +1,58 @@
 <template>
-  <headerButton :type="stationType" @renderData="renderData" />
+  <headerButton :type="stationType" @renderData="renderData"/>
   <div>
     <!-- 光伏 *************** -->
 
     <!-- 繁峙均然 -->
     <GFfanshijunran
-      class="booster-station-body"
-      v-if="wpId === 'SXJ_KGDL_JR_GDC_STA'"
+        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'"
+        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'"
+        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'"
+        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'"
+        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'"
+        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'"
+        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'"
+        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'"
+        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'"
+        class="booster-station-body"
+        v-if="wpId === 'SXJ_KGDL_TZ_GDC_STA'"
     />
   </div>
 </template>

+ 1 - 4
src/views/stateMonitor/factoryMonitor/windPowerPlant/boosterStation/index.vue

@@ -7,10 +7,7 @@
     <!-- 败虎堡 -->
     <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'"
-    />
+    <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 -->

+ 119 - 206
src/views/stateMonitor/focus/agcDetails.vue

@@ -1,223 +1,136 @@
 <template>
-  <el-dialog
-      width="90%"
-      @open="opened()"
-      @closed="closed()"
-      :fullscreen="true"
-      :show-close="true"
-      class="dialogs"
-  >
-    <template #title>
-      <div class="showTitles">
-        <div class="titles">AGC监控</div>
-      </div>
-    </template>
-    <div class="bodyy currentScroll">
-      <DataDetails
-          ref="detailst"
-          :allDate="allDate"
-          :allChartDate="allChartDate"
-          :station="station"
-          @handleClick="handleClicks"
-      ></DataDetails>
-      <DetailsCharts
-          v-model="detailsDisplay"
-          :showData="showData"
-          @closeds="closeds"
-      ></DetailsCharts>
-    </div>
-  </el-dialog>
+  <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 DataDetails from "./dataDetails";
-import DetailsCharts from "./detailsCharts";
-import api from "@api/stateMonitor/index.js";
-import dayjs from "dayjs";
+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: {
-    DataDetails,
-    DetailsCharts,
+    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 {
-      station: [],
-      allDate: {},
-      allChartDate: [],
-      detailsDisplay: false,
-      showData: {},
-      intervals: "",
+      stationType: "-1",
+      wpId: "",
     };
   },
-  created() {
-    this.getAGCStation();
-  },
-  updated() {
-  },
   methods: {
-    getAGCStation() {
-      api.getAGCStation().then((res) => {
-        this.station = res.data;
-      });
-    },
-    getLatest(index) {
-      let dialogData = {};
-      let thisKey = this.station[index].tags;
-      let array = [];
-      thisKey.forEach((item) => {
-        item.value ? array.push(item.value) : "";
-      });
-      let params = array.join(",");
-      api.getLatest(params).then((res) => {
-        for (let v in res.data) {
-          thisKey.forEach((item) => {
-            let calc = item.calc ? item.calc : 1;
-            if (item.value === v) {
-              dialogData[item.tag] = {
-                name: item.name,
-                value: res.data[v].doubleValue
-                    ? res.data[v].doubleValue === 0
-                        ? 0
-                        : Number((res.data[v].doubleValue * calc).toFixed(2))
-                    : Number(res.data[v].booleanValue)
-                        ? 1
-                        : 0,
-                tag: item.value,
-                calc: item.calc,
-              };
-            }
-          });
-        }
-        this.allDate[this.station[index].id] = dialogData;
-        this.allDate[this.station[index].id].InstalledCapacity = this.station[
-            index
-            ].tags.find((ele) => {
-          return ele.tag == "InstalledCapacity";
-        });
-        index++;
-        if (index >= this.station.length) {
-          this.intervals = setTimeout(() => {
-            this.getLatest(0);
-          }, 3000);
-        } else {
-          this.getLatest(index);
-        }
-      });
-    },
-    getChartData(index) {
-      let thisKey = this.station[index].tags;
-      let endTs = new Date().getTime();
-      let starTs = new Date(
-          new Date(new Date().toLocaleDateString()).getTime()
-      ).getTime();
-      let chartData = {
-        value: [],
-      };
-      const PowerSet = thisKey.find((ele) => {
-        return ele.tag == "PowerSet";
-      });
-      const ActualPower = thisKey.find((ele) => {
-        return ele.tag == "ActualPower";
-      });
-      let PowerSetData = [],
-          ActualPowerData = [];
-      api
-          .getPower({
-            tagName: PowerSet.value,
-            startTs: starTs,
-            endTs: endTs,
-            interval: 60,
-          })
-          .then((res1) => {
-            api
-                .getPower({
-                  tagName: ActualPower.value,
-                  startTs: starTs,
-                  endTs: endTs,
-                  interval: 60,
-                })
-                .then((res2) => {
-                  res1.data.forEach((item) => {
-                    PowerSetData.push({
-                      ts: item.ts,
-                      doubleValue: item.doubleValue * PowerSet.calc,
-                    });
-                  });
-                  res2.data.forEach((item) => {
-                    ActualPowerData.push({
-                      ts: item.ts,
-                      doubleValue: item.doubleValue * ActualPower.calc,
-                    });
-                  });
-                  chartData.value[0] = {
-                    title: "有功设定限值(MW)",
-                    yAxisIndex: 0,
-                    value: [],
-                  };
-                  chartData.value[1] = {
-                    title: "实发有功(MW)",
-                    yAxisIndex: 0,
-                    value: [],
-                  };
-                  PowerSetData.forEach((item) => {
-                    chartData.value[0].value.push({
-                      text: dayjs(item.ts).format("HH:mm"),
-                      value: parseFloat(Number(item.doubleValue).toFixed(2)),
-                    });
-                  });
-                  ActualPowerData.forEach((item) => {
-                    chartData.value[1].value.push({
-                      text: dayjs(item.ts).format("HH:mm"),
-                      value: parseFloat(Number(item.doubleValue).toFixed(2)),
-                    });
-                  });
-                  chartData.id = this.station[index].id;
-                  this.allChartDate.push(chartData);
-                  index++;
-                  if (index >= this.station.length) {
-                    this.$refs.detailst.totleErtcher();
-                    setTimeout(() => {
-                      this.allChartDate = [];
-                      this.getChartData(0);
-                    }, 60000);
-                  } else {
-                    this.getChartData(index);
-                  }
-                });
-          });
-    },
-    opened() {
-      this.getLatest(0);
-      this.getChartData(0);
-    },
-    closed() {
-      clearInterval(this.intervals);
-      this.intervals = null;
-    },
-    handleClicks(id) {
-      this.showData = this.allChartDate.find((ele) => {
-        return ele.id == id;
-      });
-      this.showData.name = this.station.find((ele) => {
-        return ele.id == id;
-      });
-      this.detailsDisplay = true;
-    },
-    closeds() {
-      this.detailsDisplay = false;
+    renderData(company, wpId) {
+      this.wpId = wpId;
     },
+    refData(wpId) {
+      this.wpId = wpId;
+    }
   },
+
 };
 </script>
-
-<style scoped>
-.bodyy {
-  display: flex;
-  flex-direction: row;
-  background-color: black;
-  width: 100%;
-  margin-top: -30px;
-  min-height: 90vh;
-}
-</style>
+<style></style>

+ 736 - 0
src/views/stateMonitor/focus/allBoosterStation.vue

@@ -0,0 +1,736 @@
+<template>
+  <div class="bodyy">
+    <div
+        type="border-card"
+        style="width: 100%; height: 100%;"
+    >
+      <div
+          class="syzDetailsPaneItem"
+          v-for="(item, index) in syzArray"
+          :key="index"
+          :name="item.id"
+      >
+        <template>
+                <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.wpsid)" :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>
+    </div>
+  </div>
+</template>
+
+<script>
+
+import api from "@api/stateMonitor/index.js";
+
+export default {
+  props: {
+    activeTabStation: {
+      type: String,
+      default: "",
+    },
+  },
+  components: {
+  },
+  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') {
+              arr.push(it.category2)
+            }
+          })
+          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,it.windpowerstationId)
+              }
+            })
+            // window.sessionStorage.setItem('allSvgData', [])
+            console.log('allSvgMsgData', this.allSvgMsgData)
+            // console.log('stationSort', this.stationSort)
+            // console.log('allMsg', allMsg)
+          }
+
+        }
+      })
+    },
+    // 获取所有升压站数据
+    getallSvgDataFn(id, name,wpsid) {
+      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,
+          wpsid: wpsid,
+          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)
+            }
+          }
+        }
+      })
+    },
+    // '全部'界面双击事件
+    dblgetSvgDataFn(name) {
+      this.activeTab = name
+      this.getSvgDataFn(name)
+      this.$emit(
+          "refData",
+          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.getAllStationtab()
+    },
+
+    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)
+      }
+    },
+    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: 100vh;
+  position: relative;
+  overflow: hidden;
+  margin-left: 44px;
+
+  .syzDetailsPaneItem {
+    position: relative;
+    height: 100%;
+
+    .buttonGroup {
+      margin-bottom: 10px;
+      display: flex;
+      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);
+      border: 3px solid #646464;
+      border-radius: 10px;
+
+      .showAllSvgMsg_top {
+        border-radius: 10px 10px 0 0;
+        height: calc(100% - 40px);
+        width: 100%;
+      }
+
+      .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 {
+    .svg {
+      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>

+ 7 - 8
src/views/stateMonitor/focus/syzDetails.vue

@@ -65,8 +65,7 @@
               </div>
             </div>
           </div>
-          <div id="svg" :style="pageHeight" v-if="item.id !== 'all' && item.id === activeTab" v-html="svgMsg"
-               v-loading="loading"></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'"/>
@@ -479,7 +478,7 @@ export default {
     // '全部'界面双击事件
     dblgetSvgDataFn(name) {
       this.activeTab = name
-      this.getSvgDataFn(name)
+      // this.getSvgDataFn(name)
     },
     // 初始化第一次报警并判断是否播放声音
     initAlarm() {
@@ -662,14 +661,14 @@ export default {
     },
 
     tabClick(res) {
-      clearInterval(this.starTimer);
-      this.starTimer = null;
-      this.$store.commit("activeTab", res.props.name);
-      this.renderAlarm(res.props.name, false);
+      // 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;