Jelajahi Sumber

完成报警确认

xushining 3 tahun lalu
induk
melakukan
419e0be3c8

+ 104 - 50
src/components/area/AlarmArea.vue

@@ -6,40 +6,52 @@
     circle-style="green"
     content-style="25"
   >
-  <div style="padding-left:5px;padding-right:5px;">
-    <el-table
-      :data="values"
-      height="219px"
-      :header-cell-style="{
-                background: 'Black',
-                color: 'rgb(220,220,220)',
-                padding:'4px',
-                fontSize:'14px',
-                'border-bottom':'solid 1px black'
-              }"
-      :cell-style="{ background: '#1e1e1e', color: 'rgb(220,220,220)',padding:'3px',fontSize:'12px'}"
-      @row-dblclick="itemDblclick"
-      @cell-click="itemChecked"
+    <div style="padding-left: 5px; padding-right: 5px">
+      <el-table
+        :data="values"
+        height="219px"
+        :header-cell-style="{
+          background: 'Black',
+          color: 'rgb(220,220,220)',
+          padding: '4px',
+          fontSize: '14px',
+          'border-bottom': 'solid 1px black',
+        }"
+        :cell-style="{
+          background: '#1e1e1e',
+          color: 'rgb(220,220,220)',
+          padding: '3px',
+          fontSize: '12px',
+        }"
+        @row-dblclick="itemDblclick"
       >
-      <el-table-column
-        prop="lastUpdateTime"
-        align="center"
-        label="时间"
-        width="150">
-      </el-table-column>
-      <el-table-column
-        prop="alertText"
-        align="center"
-        label="描述"
-        width="380">
-      </el-table-column>
-      <el-table-column
-        prop="address"
-        align="center"
-        label="确认">
-        <input type="checkbox"/>
-      </el-table-column>
-    </el-table>
+        <el-table-column
+          prop="lastUpdateTime"
+          align="center"
+          label="时间"
+          width="150"
+        >
+        </el-table-column>
+        <el-table-column
+          prop="alertText"
+          align="center"
+          label="描述"
+          width="380"
+        >
+        </el-table-column>
+        <el-table-column prop="isSelected" align="center" label="确认">
+          <template v-slot="scope">
+            <!-- <el-checkbox v-model="scope.row.isSelected" @click="itemChecked(scope.row)"></el-checkbox> -->
+            <input
+              type="checkbox"
+              v-model="scope.row.isSelected"
+              @click="itemChecked(scope.row)"
+            />
+          </template>
+          <!-- <el-checkbox v-model="isSelected"></el-checkbox> -->
+          <!-- <input type="checkbox"/> -->
+        </el-table-column>
+      </el-table>
     </div>
   </gy-card>
   <WindturbineDetailPages
@@ -50,12 +62,14 @@
 
 <script>
 import MessageBridge from "../../assets/script/MessageBridge";
-import WindturbineDetailPages from '../area/windturbine/WindturbineDetailPages.vue'
-import BackgroundData from '../../assets/script/BackgroundData'
+import WindturbineDetailPages from "../area/windturbine/WindturbineDetailPages.vue";
+import BackgroundData from "../../assets/script/BackgroundData";
+import axios from "axios";
+import { config } from "../../config";
 
 export default {
   name: "AlarmArea",
-  components:{
+  components: {
     WindturbineDetailPages,
   },
   created: function () {
@@ -64,8 +78,8 @@ export default {
   props: {},
   data() {
     return {
-      values: ['-','-','-','-','-','-'],
-      dialogVisible:false,
+      values: ["-", "-", "-", "-", "-", "-"],
+      dialogVisible: false,
       currentWindturbine: {},
     };
   },
@@ -77,27 +91,39 @@ export default {
     },
     faultMessage(msg) {
       var val = JSON.parse(msg);
+      var sleected = {};
+      this.values.forEach((it) => {
+        if (it.isSelected) {
+          sleected[it.id] = 0;
+        }
+      });
       this.values = new Array();
       for (var v in val) {
         var vl = val[v];
         if (vl.stationId != "QS_FDC" && vl.category1 == "FJ") {
           vl.alertText = vl.windturbineName + "-" + vl.alertText;
         }
+        if (sleected[vl.id] == 0 && BackgroundData.getInstance().LoginUser) {
+          vl.isSelected = true;
+        }
         this.values.push(vl);
       }
       console.log(val);
     },
     /* 行双击 */
-    itemDblclick(row){
-      if(row.category1!='FJ')return;
+    itemDblclick(row) {
+      if (row.category1 != "FJ") return;
       this.dialogVisible = true;
-      this.currentWindturbine=row;
+      this.currentWindturbine = row;
     },
     /* 报警确认 */
-    itemChecked(row, column){
-      if(column.label!="确认")return;
+    itemChecked(row) {
+      if (row.isSelected == true) {
+        row.isSelected = false;
+        return;
+      }
       var bd = BackgroundData.getInstance();
-      if(!bd.LoginUser){
+      if (!bd.LoginUser) {
         this.$notify({
           title: "请登录",
           message: "确认报警需要先登录!",
@@ -105,17 +131,45 @@ export default {
           position: "bottom-right",
           offset: 60,
         });
+        row.isSelected = false;
         return;
       }
+      row.isSelected = true;
+      this.confirm(row);
       console.log(row);
-    }
+    },
+    confirm(item) {
+      var url = `http://${config.calcUrl}/alarm/confirm?snapID=${item.snapIDString}&faultID=${item.idString}&userName=${BackgroundData.getInstance().LoginUser.name}`;
+      axios
+        .get(url)
+        .then((msg) => {
+          var mms = msg.data > 0 ? "报警确认成功!" : "报警确认出现错误!";
+          var tp = msg.data > 0 ? "success" : "error";
+          this.$notify({
+            title: "报警",
+            message: mms,
+            type: tp,
+            position: "bottom-right",
+            offset: 60,
+          });
+        })
+        .catch((err) => {
+          this.$notify({
+            title: "报警",
+            message: `报警确认出现错误:${err.message},请重试`,
+            type: "error",
+            position: "bottom-right",
+            offset: 60,
+          });
+        });
+    },
   },
 };
 </script>
 <style scoped>
 :deep(.el-table__body-wrapper::-webkit-scrollbar) {
   width: 8px;
-  height:0px;
+  height: 0px;
   background-color: black;
 }
 
@@ -123,8 +177,8 @@ export default {
   background-color: #292929;
   border-radius: 6px;
 }
-:deep(.el-table td,.el-table th){
-border-bottom:2px solid black;
+:deep(.el-table td, .el-table th) {
+  border-bottom: 2px solid black;
 }
 tr {
   line-height: 1.5;
@@ -149,7 +203,7 @@ tr {
   text-align: center;
   background: #000000;
   margin: 5px;
-  border-collapse:separate;
-  border-spacing:0px 5px;
+  border-collapse: separate;
+  border-spacing: 0px 5px;
 }
 </style>

+ 5 - 5
src/components/area/windturbine/BasicInformationDetail.vue

@@ -162,11 +162,11 @@
               break;
           }
         })
-        dataList.push(date1)
-        dataList.push(date2)
-        dataList.push(date3)
-        dataList.push(date4)
-        dataList.push(date5)
+        date1.alertText.length>0?dataList.push(date1):''
+        date2.alertText.length>0?dataList.push(date2):''
+        date3.alertText.length>0?dataList.push(date3):''
+        date4.alertText.length>0?dataList.push(date4):''
+        date5.alertText.length>0?dataList.push(date5):''
         this.warnList = dataList
       },
       /* 刷新数据 */