瀏覽代碼

新增预警查询和停机查询页面并增加页面权限,增加菜单图标

baiyanting 1 年之前
父節點
當前提交
ca432be4c0

文件差異過大導致無法顯示
+ 1 - 0
src/assets/icon/svg/zhbj.svg


+ 3 - 0
src/assets/styles/el-override/el-pagination.less

@@ -1,6 +1,9 @@
 // el-pagination
 .main-body {
   .el-pagination {
+    display: flex;
+    justify-content: flex-end;
+    align-items: center;
     color: #b3bdc0;
     .el-pagination__total {
       color: #b3bdc0;

+ 17 - 7
src/router/index.js

@@ -551,7 +551,7 @@ export const asyncRoutes = [
     meta: {
       title: "综合报警",
       icon: "",
-      permissions: ["jn_stateMonitor"],
+      permissions: ["jn_integratedAlarm"],
     },
     children: [
       {
@@ -560,8 +560,8 @@ export const asyncRoutes = [
         component: () => import("@/views/IntegratedAlarm/safe"),
         meta: {
           title: "综合报警",
-          icon: "svg-matrix",
-          permissions: ["jn_jcjz"],
+          icon: "svg-zhbj",
+          permissions: ["jn_safe"],
         },
         children: [
           {
@@ -569,9 +569,9 @@ export const asyncRoutes = [
             name: "realwarning",
             component: () => import("@/views/IntegratedAlarm/safe/realWarning"),
             meta: {
-              title: "综合报警",
+              title: "实时报警",
               icon: "",
-              permissions: ["jn_jcjz"],
+              permissions: ["jn_safe_ssbj"],
             },
           },
           {
@@ -582,7 +582,7 @@ export const asyncRoutes = [
             meta: {
               title: "报警查询",
               icon: "",
-              permissions: ["jn_jcjz"],
+              permissions: ["jn_safe_bjcx"],
             },
           },
           {
@@ -593,7 +593,17 @@ export const asyncRoutes = [
             meta: {
               title: "预警查询",
               icon: "",
-              permissions: ["jn_jcjz"],
+              permissions: ["jn_safe_yjcx"],
+            },
+          },
+          {
+            path: "stopQuery", //停机查询
+            name: "stopQuery",
+            component: () => import("@/views/IntegratedAlarm/safe/stopQuery"),
+            meta: {
+              title: "停机查询",
+              icon: "",
+              permissions: ["jn_safe_tjcx"],
             },
           },
         ],

+ 11 - 5
src/views/IntegratedAlarm/safe/customWarning/index.vue

@@ -143,18 +143,20 @@
         </div>
       </div>
       <div class="btns">
-        <el-button class="buttons" size="mini" @click="getAlarmHistoryt"
+        <el-button class="buttons" round size="mini" @click="getAlarmHistoryt"
           >查询</el-button
         >
         <el-button
           size="mini"
           class="buttons"
+          round
           @click="export2Excel"
           :disabled="state.tableData?.length == 0 ? true : false"
         >
           导出</el-button
         >
         <el-button
+          round
           class="buttons"
           size="mini"
           :disabled="!state.tableData?.length"
@@ -281,7 +283,7 @@
           layout="total, sizes, prev, pager, next"
           :current-page="query.page"
           :page-size="query.limit"
-          :page-sizes="[20, 100, 500, 1000]"
+          :page-sizes="[21, 100, 500, 1000]"
           :total="query.pageTotal"
           @size-change="
             (value) => {
@@ -538,7 +540,7 @@ const getWindturbineList = async () => {
 };
 const query = reactive({
   page: 1,
-  limit: 20,
+  limit: 21,
   pageTotal: null,
 });
 const tableLoading = ref(false);
@@ -679,6 +681,7 @@ p {
     display: flex;
     flex-direction: column;
     padding-top: 10px;
+    position: relative;
     .search-wrapper {
       display: flex;
       align-items: center;
@@ -690,7 +693,7 @@ p {
       .search-item {
         display: flex;
         margin-right: 10px;
-        max-width: 220px;
+        max-width: 450px;
         align-items: center;
         .label {
           margin-right: 10px;
@@ -708,6 +711,9 @@ p {
       display: flex;
       justify-content: flex-end;
       margin-right: 10px;
+      position: absolute;
+      right: 0;
+      top: 53px;
     }
 
     .buttons {
@@ -723,7 +729,7 @@ p {
     }
   }
   .table-wrapper {
-    height: calc(100% - 82px);
+    height: calc(100% - 43px);
     width: 100%;
     .leftContent {
       width: 242px;

+ 15 - 6
src/views/IntegratedAlarm/safe/historyWarning/index.vue

@@ -142,19 +142,21 @@
         </div>
       </div>
       <div class="btns">
-        <el-button class="buttons" size="mini" @click="getAlarmHistoryt"
+        <el-button class="buttons" round size="mini" @click="getAlarmHistoryt"
           >查询</el-button
         >
         <el-button
           size="mini"
           class="buttons"
           @click="export2Excel"
+          round
           :disabled="state.tableData?.length == 0 ? true : false"
         >
           导出</el-button
         >
         <el-button
           class="buttons"
+          round
           size="mini"
           :disabled="!state.tableData?.length"
           @click="confirmItem(state.tableData)"
@@ -272,7 +274,10 @@
             fixed="right"
           >
             <template #default="scope">
-              <el-button  type="text" style="color: #05bb4c" @click="confirmItem([scope.row])"
+              <el-button
+                type="text"
+                style="color: #05bb4c"
+                @click="confirmItem([scope.row])"
                 >确认本条</el-button
               >
             </template>
@@ -284,7 +289,7 @@
           layout="total, sizes, prev, pager, next"
           :current-page="query.page"
           :page-size="query.limit"
-          :page-sizes="[20, 100, 500, 1000]"
+          :page-sizes="[21, 100, 500, 1000]"
           :total="query.pageTotal"
           @size-change="
             (value) => {
@@ -571,7 +576,7 @@ const getWindturbineList = async () => {
 };
 const query = reactive({
   page: 1,
-  limit: 20,
+  limit: 21,
   pageTotal: null,
 });
 
@@ -716,6 +721,7 @@ p {
     display: flex;
     flex-direction: column;
     padding-top: 10px;
+    position: relative;
     .search-wrapper {
       display: flex;
       align-items: center;
@@ -727,7 +733,7 @@ p {
       .search-item {
         display: flex;
         margin-right: 10px;
-        max-width: 220px;
+        max-width: 450px;
         align-items: center;
         .label {
           margin-right: 10px;
@@ -745,6 +751,9 @@ p {
       display: flex;
       justify-content: flex-end;
       margin-right: 10px;
+      position: absolute;
+      right: 0;
+      top: 53px;
     }
 
     .buttons {
@@ -760,7 +769,7 @@ p {
     }
   }
   .table-wrapper {
-    height: calc(100% - 82px);
+    height: calc(100% - 43px);
     width: 100%;
     .leftContent {
       width: 242px;

+ 339 - 0
src/views/IntegratedAlarm/safe/stopQuery/index.vue

@@ -0,0 +1,339 @@
+<template>
+  <div class="stopQueryBox">
+    <div class="form-wrapper">
+      <div class="search-wrapper">
+        <div class="search-item">
+          <span class="label">风场:</span>
+          <div class="search-content">
+            <el-select
+              v-model="wpId"
+              size="mini"
+              placeholder="全部"
+              popper-class="select"
+              @change="
+                () => {
+                  wtId = '';
+                  getWtList();
+                }
+              "
+            >
+              <el-option
+                v-for="item in wpArray"
+                :key="item.id"
+                :value="item.id"
+                :label="item.aname"
+              >
+              </el-option>
+            </el-select>
+          </div>
+        </div>
+        <div class="search-item">
+          <span class="label">风机:</span>
+          <div class="search-content">
+            <el-select
+              v-model="wtId"
+              clearable
+              size="mini"
+              placeholder="全部"
+              popper-class="select"
+              @change="() => {}"
+            >
+              <el-option
+                v-for="item in wtArray"
+                :key="item.nemCode"
+                :value="item.nemCode"
+                :label="item.name"
+              >
+              </el-option>
+            </el-select>
+          </div>
+        </div>
+        <div class="search-item">
+          <span class="label">停机类型:</span>
+          <div class="search-content">
+            <el-select
+              v-model="type"
+              size="mini"
+              placeholder="全部"
+              popper-class="select"
+              @change="() => {}"
+            >
+              <el-option value="gz" label="故障" />
+              <el-option value="wh" label="检修" />
+            </el-select>
+          </div>
+        </div>
+        <div class="search-item">
+          <span class="label">故障描述:</span>
+          <div class="search-content">
+            <el-input
+              v-model="description"
+              placeholder="请输入..."
+              size="mini"
+              clearable
+            ></el-input>
+          </div>
+        </div>
+        <div class="search-item">
+          <span class="label">日期区间:</span>
+          <div class="search-content">
+            <el-date-picker
+              v-model="dateRange"
+              size="mini"
+              type="datetimerange"
+              range-separator="-"
+              format="YYYY-MM-DD HH:mm:ss"
+              value-format="YYYY-MM-DD HH:mm:ss"
+              start-placeholder="开始时间"
+              end-placeholder="结束时间"
+              @change="getTableData"
+            >
+            </el-date-picker>
+          </div>
+        </div>
+      </div>
+      <div class="btns">
+        <el-button class="buttons" round size="mini" @click="getTableData"
+          >查询</el-button
+        >
+      </div>
+    </div>
+    <div class="table-wrapper">
+      <div class="leftContent">
+        <span>{{ pageTitle }}</span>
+      </div>
+      <el-table
+        size="mini"
+        :data="tableData"
+        height="calc(100% - 43px - 40px)"
+        style="width: 100%"
+        stripe
+      >
+        <el-table-column
+          :label="item.label"
+          :prop="item.prop"
+          show-overflow-tooltip
+          header-align="center"
+          align="center"
+          v-for="(item, index) in tHeader"
+          :key="index"
+        >
+          <template #default="scope">
+            <span>
+              {{ scope.row[item.prop] != "NULL" ? scope.row[item.prop] : "--" }}
+            </span>
+          </template>
+        </el-table-column>
+      </el-table>
+      <div class="pagination-wrapper">
+        <el-pagination
+          layout="total, sizes, prev, pager, next"
+          :page-sizes="[22, 100, 500, 1000]"
+          @size-change="
+            (value) => {
+              pageNum = 1;
+              pageSize = value;
+              getTableData();
+            }
+          "
+          :current-page="pageNum"
+          :page-size="pageSize"
+          :total="total"
+          @current-change="currentChange"
+        ></el-pagination>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import dayjs from "dayjs";
+import {
+  getWpList,
+  fetchWindturbineList,
+  getStopQueryTableData,
+} from "@/api/zhbj/index.js";
+
+export default {
+  name: "stopQuery",
+  data() {
+    return {
+      pageTitle: "停机查询",
+      wpId: "",
+      wpArray: [],
+      wtId: "",
+      wtArray: [],
+      dateRange: [],
+      type: "gz",
+      description: "",
+      pageNum: 1,
+      pageSize: 22,
+      total: 0,
+      tableData: [],
+      tHeader: [
+        {
+          label: "设备编号",
+          prop: "code",
+        },
+        {
+          label: "停机时间",
+          prop: "stopTimeName",
+        },
+        {
+          label: "恢复启动时间",
+          prop: "startTimeName",
+        },
+        {
+          label: "停机小时数",
+          prop: "stopHours",
+        },
+        {
+          label: "损失电量",
+          prop: "lossPower",
+        },
+        {
+          label: "报警编号",
+          prop: "warningId",
+        },
+        {
+          label: "处理方式",
+          prop: "handleWay",
+        },
+        {
+          label: "故障现象",
+          prop: "faultView",
+        },
+        {
+          label: "故障类型",
+          prop: "typeName",
+        },
+      ],
+    };
+  },
+
+  created() {
+    this.dateRange = [
+      dayjs().subtract(7, "day").format("YYYY-MM-DD HH:mm:ss"),
+      dayjs().format("YYYY-MM-DD HH:mm:ss"),
+    ];
+    this.getWpList();
+  },
+
+  methods: {
+    async getWpList() {
+      const { data } = await getWpList("windturbine");
+      this.wpId = data?.[0]?.id || "";
+      this.wpArray = data || [];
+      this.getWtList();
+    },
+
+    async getWtList() {
+      const { data } = await fetchWindturbineList(this.wpId);
+      this.wtArray = data || [];
+      this.getTableData();
+    },
+
+    async getTableData() {
+      this.BASE.showLoading();
+      const { data } = await getStopQueryTableData({
+        wpId: this.wpId,
+        wtId: this.wtId,
+        type: this.type,
+        description: this.description,
+        begin: this.dateRange?.[0] || "",
+        end: this.dateRange?.[1] || "",
+        pageNum: this.pageNum,
+        pageSize: this.pageSize,
+      });
+      this.BASE.closeLoading();
+      data?.records?.forEach((ele) => {
+        ele.stopTimeName = dayjs(ele.stopTime).format("YYYY-MM-DD HH:mm:ss");
+        ele.startTimeName = ele.startTime
+          ? dayjs(ele.startTime).format("YYYY-MM-DD HH:mm:ss")
+          : "";
+        ele.typeName = ele.stopTypeId === "gz" ? "故障" : "检修";
+      });
+
+      this.tableData = data?.records || [];
+      this.total = data.total || 0;
+    },
+
+    currentChange(pageNum) {
+      this.pageNum = pageNum;
+      this.getTableData();
+    },
+  },
+};
+</script>
+
+<style lang="less" scoped>
+.stopQueryBox {
+  height: 100%;
+  width: 100%;
+  padding: 0 20px;
+  padding-bottom: 15px;
+  .form-wrapper ::v-deep {
+    display: flex;
+    // flex-direction: column;
+    padding-top: 15px;
+    .search-wrapper {
+      display: flex;
+      align-items: center;
+      font-size: 14px;
+      font-family: Microsoft YaHei;
+      font-weight: 400;
+      color: #b3b3b3;
+      margin-bottom: 15px;
+      .search-item {
+        display: flex;
+        margin-right: 10px;
+        max-width: 450px;
+        align-items: center;
+        .label {
+          margin-right: 10px;
+          text-align: right;
+          white-space: nowrap;
+          // width: 60px;
+        }
+        .search-content {
+          flex: 1;
+        }
+      }
+    }
+    .buttons {
+      background-color: rgba(5, 187, 76, 0.2);
+      border: 1px solid #3b6c53;
+      color: #b3b3b3;
+      font-size: 14px;
+
+      &:hover {
+        background-color: rgba(5, 187, 76, 0.5);
+        color: #ffffff;
+      }
+    }
+  }
+  .table-wrapper {
+    height: calc(100% - 62px);
+    width: 100%;
+    .leftContent {
+      width: 242px;
+      height: 41px;
+      display: flex;
+      align-items: center;
+      background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
+
+      span {
+        font-size: 16px;
+        font-family: Microsoft YaHei;
+        font-weight: 400;
+        color: #05bb4c;
+        margin-left: 25px;
+      }
+    }
+    .pagination-wrapper :deep {
+      text-align: right;
+      margin-top: 10px;
+    }
+  }
+}
+</style>