فهرست منبع

修改安全监视筛选菜单,新增光伏矩阵的集中式组串式

baiyanting 1 سال پیش
والد
کامیت
0e8d16914b

+ 10 - 1
src/api/cockpit/matrix/index.js

@@ -69,6 +69,14 @@ const matrixSinglePush = (query) => {
     method: "get",
   });
 };
+// 单场矩阵
+const matrixSinglePushFL = (query) => {
+  return request({
+    baseURL: process.env.VUE_APP_Matrix,
+    url: `Photovoltaic/monitor?wpId=${query.wpid}&type=${query.type}`,
+    method: "get",
+  });
+};
 //全风场简单矩阵
 const findSimpleMatrixAll = (data) => {
   return request({
@@ -325,8 +333,9 @@ export default {
   matrixPush,
   findSimpleMatrixAll,
   findWtInfo,
-    matrixDetailPush,
+  matrixDetailPush,
   matrixSinglePush,
+  matrixSinglePushFL,
   findWtWarnInfo,
   matrixQfPush,
   monitor,

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 0
src/assets/icon/svg/fljz.svg


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1 - 0
src/assets/icon/svg/fljz1.svg


+ 237 - 0
src/components/headerNavSta/index.vue

@@ -0,0 +1,237 @@
+<template>
+  <div class="heeaderNav">
+    <div class="tab-box">
+      <div
+        class="tab-item"
+        v-for="(tab, index) of tabs"
+        :key="index"
+        :class="{ active1: activeTab == tab.id }"
+        @click.stop="headerCheck(tab.id, tab.show)"
+      >
+        <span
+          class="svg-icon svg-icon-sm"
+          :class="activeTab == tab.id ? 'svg-icon-green' : 'svg-icon-write'"
+        >
+          <SvgIcon :svgid="tab.icon"></SvgIcon>
+        </span>
+        <span>{{ tab.text }}</span>
+      </div>
+    </div>
+    <!-- <div class="rightTitle" v-if="wpId != 'KGDL_FGS'">
+      <div
+        class="all-enterprise"
+        :class="{ active1: enterpriseIndex == 'all' }"
+        @click="handleClickEnterprise('all', '清洁能源')"
+      >
+        <i
+          class="svg-icon svg-icon-sm"
+          :class="
+            $store.state.themeName === 'dark'
+              ? enterpriseIndex == 'all'
+                ? 'svg-icon-green'
+                : 'svg-icon-write'
+              : 'svg-icon-black'
+          "
+        >
+          <SvgIcon svgid="svg-enterprise"></SvgIcon>
+        </i>
+        <span>清洁能源</span>
+      </div>
+      <div
+        :class="{ active1: enterpriseIndex == item.nemCode }"
+        class="enterprise-item"
+        v-for="(item, index) in childNode"
+        :key="index"
+        @click="handleClickEnterprise(item.nemCode, item.aname)"
+      >
+        <span>{{ item.aname }}</span>
+      </div>
+    </div> -->
+  </div>
+</template>
+
+<script>
+import SvgIcon from "@/components/coms/icon/svg-icon.vue";
+import { headerCompany } from "@/api/headerNav/header.js";
+export default {
+  name: "HeaderNavSta", //安全监视标题栏
+  props: {
+    isAll: {
+      type: Boolean,
+      default: false,
+    },
+    wpId: {
+      type: String,
+      default: "",
+    },
+    companyid: { type: String, default: "SXJ_RGN" },
+    currents: { type: Number, default: 0 },
+  },
+  components: { SvgIcon },
+  data() {
+    return {
+      OrganizationList: [],
+      activeTab: -1,
+      headerIndexs: -1,
+      wpIds: "",
+      tabs: [
+        // {
+        //   icon: "svg-all",
+        //   text: "全部",
+        //   show: "all",
+        //   id: 0,
+        // },
+        {
+          icon: "svg-wind-site",
+          text: "风电",
+          show: "fc",
+          id: -1,
+        },
+        {
+          icon: "svg-photovoltaic",
+          text: "光伏",
+          show: "gf",
+          id: -2,
+        },
+      ],
+      enterpriseIndex: "all",
+      companyName: "山西",
+      showType: "all",
+      childNode: [],
+      regionList: [
+        { name: "全国", key: "KGDL_FGS" },
+        { name: "山西", key: "SXJ_RGN" },
+        { name: "内蒙", key: "NMM_RGN" },
+      ],
+    };
+  },
+  created() {
+    this.$nextTick(() => {
+      this.$emit("firstRender", this.activeTab, this.showType, this.wpId);
+    });
+  },
+  watch: {
+    wpId: {
+      handler(val) {
+        let region = this.regionList.find((item) => item.key == val);
+        if ((val && (region || this.currents == 1)) || this.isAll) {
+          this.getOrganizationList();
+        }
+      },
+      immediate: true,
+    },
+  },
+  methods: {
+    getOrganizationList() {
+      if (this.currents == 1 && this.wpId.includes("SXJ")) {
+        headerCompany({ regionid: "SXJ_RGN" }).then(({ data }) => {
+          this.childNode = data.data;
+        });
+      } else {
+        headerCompany({ regionid: this.wpId }).then(({ data }) => {
+          this.childNode = data.data;
+        });
+      }
+    },
+    handleClickEnterprise(enterprise, name) {
+      this.companyName = name;
+      this.enterpriseIndex = enterprise;
+      this.$emit("typeFlag", this.showType, this.enterpriseIndex);
+      this.$emit(
+        "firstRender",
+        this.activeTab,
+        this.showType,
+        enterprise == "all" ? "SXJ_RGN" : enterprise,
+        enterprise == "all" ? "清洁能源" : name
+      );
+    },
+    headerCheck(index, showType) {
+      this.activeTab = index;
+      this.showType = showType;
+      this.$emit(
+        "firstRender",
+        this.activeTab,
+        this.showType,
+        this.wpId,
+        this.wpId == "KGDL_FGS" ? "" : this.companyName
+      );
+      this.$emit("typeFlag", this.showType, this.enterpriseIndex);
+    },
+  },
+};
+</script>
+
+<style lang="less" scoped>
+.heeaderNav {
+  height: 35px;
+  display: flex;
+  align-items: center;
+  margin: 16px 0 16px 20px;
+}
+.tab-box {
+  display: inline-block;
+  z-index: 2;
+  display: flex;
+
+  .tab-item {
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    font-size: 14px;
+    font-family: Microsoft YaHei;
+    cursor: pointer;
+    padding: 3px 14px;
+    margin-right: 5px;
+
+    &.active1 {
+      color: @green;
+      position: relative;
+      background: rgba(84, 183, 90, 0.16);
+      border-radius: 16px;
+
+      &::after {
+        content: "";
+        position: absolute;
+        width: 100%;
+        height: 0.463vh;
+        border-top: 0;
+        left: 0;
+        bottom: 0;
+        box-sizing: border-box;
+      }
+    }
+
+    .svg-icon {
+      margin-right: 12px;
+      margin-top: 2px;
+    }
+  }
+}
+
+.rightTitle {
+  display: flex;
+  margin-left: 72px;
+  z-index: 5;
+  .active1 {
+    // background: rgba(84, 183, 90, 0.4);
+    color: #05bb4c;
+  }
+  div {
+    display: flex;
+    padding: 0 14px;
+    align-items: center;
+    height: 25px;
+    line-height: 25px;
+    font-size: 15px;
+    font-family: Microsoft YaHei;
+    background: rgba(84, 183, 90, 0.16);
+    border-radius: 16px;
+    text-align: center;
+    margin-right: 15px;
+    cursor: pointer;
+    .svg-icon {
+      margin-right: 12px;
+    }
+  }
+}
+</style>

+ 13 - 0
src/router/index.js

@@ -261,6 +261,19 @@ export const asyncRoutes = [
                 },
               },
               {
+                path: "lightMatrix",
+                component: () =>
+                  import(
+                    "@/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrix"
+                  ),
+                name: "lightMatrix",
+                meta: {
+                  title: "分类矩阵",
+                  permissions: ["jn_gfcz_jzjs", "*:*:*"],
+                  icon: "svg-fljz",
+                },
+              },
+              {
                 path: "photovoltaicFacility",
                 component: () =>
                   import(

+ 3 - 3
src/views/stateMonitor/DetailMatrix/index.vue

@@ -323,7 +323,7 @@ import windDetail from "@/components/windDetail/index";
 import lightDetail from "@/components/lightDetial/index.vue";
 import SvgIcon from "@com/coms/icon/svg-icon.vue";
 import { deepClone, findUpColor } from "@/utills/func.js";
-import HeaderNav from "@/components/headerNav/index.vue";
+import HeaderNav from "@/components/headerNavSta/index.vue";
 import api from "@api/cockpit/matrix/index.js";
 export default {
   // 名称
@@ -608,9 +608,9 @@ export default {
         //   flag: true,
         // },
       ],
-      activeTab: "all", //全部 风电 光伏
+      activeTab: "fc", //全部 风电 光伏
       enterpriseIndex: "all", //公司
-      tabIndex: 0, //全部 0  风电 -1  光伏-2
+      tabIndex: -1, //全部 0  风电 -1  光伏-2
       //   wt指标
       ssPv: [
         {

+ 5 - 5
src/views/stateMonitor/LightMatrix/index.vue

@@ -5,7 +5,7 @@
   >
     <el-header>
       <el-row>
-        <el-col :span="12" v-if="activeTab == 'all' || activeTab == 'fc'">
+        <el-col :span="12" v-if="activeTab == 'fc'">
           <div class="fd-header1">
             <el-col class="fd-img">
               <div class="imgs">
@@ -117,7 +117,7 @@
             </el-col>
           </div>
         </el-col>
-        <el-col :span="12" v-if="activeTab == 'all' || activeTab == 'gf'">
+        <el-col :span="12" v-if="activeTab == 'gf'">
           <div class="fd-header2">
             <el-col class="gf-img">
               <div class="imgs">
@@ -417,7 +417,7 @@ import { deepClone } from "@/utills/func.js";
 import SvgIcon from "@com/coms/icon/svg-icon.vue";
 import api from "@api/cockpit/matrix/index.js";
 import { setInterval, clearInterval } from "timers";
-import HeaderNav from "@/components/headerNav/index.vue";
+import HeaderNav from "@/components/headerNavSta/index.vue";
 export default {
   // 名称
   name: "LightMatrix", //基础矩阵
@@ -448,9 +448,9 @@ export default {
       windId: "",
       contrastDisplay: false,
       chooseList: [],
-      activeTab: "all", //全部 风电 光伏
+      activeTab: "fc", //全部 风电 光伏
       enterpriseIndex: "all",
-      tabIndex: 0,
+      tabIndex: -1,
       //   wp指标
       stse: [
         {

+ 58 - 3
src/views/stateMonitor/factoryMonitor/components/headerButton.vue

@@ -14,6 +14,19 @@
       >
       </el-option>
     </el-select>
+    <!-- <div class="tabButton" v-if="type == -2">
+      <el-button>集中式</el-button>
+      <el-button>组串式</el-button>
+    </div> -->
+    <el-radio-group
+      v-if="tabShow"
+      v-model="tab"
+      size="mini"
+      @change="handleTabChanged"
+    >
+      <el-radio-button label="JZ">集中式</el-radio-button>
+      <el-radio-button label="ZC">组串式</el-radio-button>
+    </el-radio-group>
     <div class="icon">
       <i
         class="svg-icon svg-icon-md"
@@ -83,10 +96,15 @@ export default {
       type: Boolean,
       default: false,
     },
+    tabShow: {
+      type: Boolean,
+      default: false,
+    },
   },
   components: { SvgIcon },
   data() {
     return {
+      tab: "JZ",
       OrganizationList: [
         {
           label: "清洁能源",
@@ -126,9 +144,17 @@ export default {
     this.$nextTick(() => {
       this.getOrganizationList();
     });
-
   },
   methods: {
+    handleTabChanged(val) {
+      this.$emit(
+        "renderData",
+        this.checkNode,
+        this.stationCode,
+        this.stationName,
+        val
+      );
+    },
     //获取区域公司
     getOrganizationList() {
       headerCompany({}).then(({ data }) => {
@@ -203,7 +229,8 @@ export default {
             "renderData",
             this.checkNode,
             this.stationCode,
-            this.pageData[0].name
+            this.pageData[0].name,
+            this.tab
           );
         }
         if (!Object.keys(this.localWpinfo).length) {
@@ -285,7 +312,8 @@ export default {
           "renderData",
           this.checkNode,
           this.stationCode,
-          this.stationName
+          this.stationName,
+          this.tab
         );
       }
       this.localWpinfo = { wpid: val, wpname: this.stationName };
@@ -320,6 +348,33 @@ export default {
   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;

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 1590 - 0
src/views/stateMonitor/factoryMonitor/photovoltaic/lightMatrix/index.vue


+ 1 - 1
src/views/stateMonitor/factoryMonitor/photovoltaic/lighthome/index.vue

@@ -1654,7 +1654,7 @@ export default {
 
   .info {
     width: 100%;
-    height: 560px;
+    height: 580px;
     background-color: rgba(96, 103, 105, 0.2);
     border-radius: 5px;
     margin-bottom: 20px;

+ 3 - 3
src/views/stateMonitor/zhzb/zhzb.vue

@@ -105,7 +105,7 @@
 import dialogCheck from "@/components/qushi/dialogCheck.vue";
 import zbDialog from "@/components/zbDialog/index.vue";
 import { getComprehensiveList } from "@/api/monitor/index.js";
-import HeaderNav from "@/components/headerNav/index.vue";
+import HeaderNav from "@/components/headerNavSta/index.vue";
 import { getNewObj, deepClone } from "@/utills/func.js";
 export default {
   components: {
@@ -186,8 +186,8 @@ export default {
       stationDatasd: [],
       changeSer: false,
       changeWid: false,
-      activeTab: "all",
-      tabIndex: 0,
+      activeTab: "fc",
+      tabIndex: -1,
       enterpriseIndex: "all",
       targets: "",
     };