chenrui  3 жил өмнө
parent
commit
f5fa03787d

+ 7 - 0
src/api/request.js

@@ -288,6 +288,13 @@ export function alarmConfigurationadd(data) {//新增告警配置
   })
 }
 
+export function alarmConfigurationmod(data) {//修改告警配置
+  return Service({
+    url: '/Framework/AlarmPlc/UpdateAmrPlc',
+    method: 'post',
+    data:data
+  })
+}
 export function alarmConfigurationele(data) {//告警配置删除
   return Service({
     url: '/Framework/AlarmPlc/DeletAmrPlc',

+ 36 - 12
src/components/alarmConfigpop/index.vue

@@ -57,7 +57,8 @@
 </template>
 <script>
   import {
-    alarmConfigurationadd
+    alarmConfigurationadd,
+    alarmConfigurationmod
   } from '@/api/request.js'
 export default {
     props: ['dialogVisibledarm', 'listdata'],
@@ -92,6 +93,13 @@ export default {
             },
         }
     },
+    watch: {
+        listdata () {
+            if (this.listdata.list) {
+                this.form = this.listdata.list
+            }
+        }
+    },
     methods: {
         handleClose () {
             this.$emit('arlem')
@@ -104,17 +112,33 @@ export default {
                     this.form.alarm_position = this.form.alarm_position.replace(/\s*/g,"")
                     this.form.alarm_content = this.form.alarm_content.replace(/\s*/g,"")
                     this.form.handle_methode = this.form.handle_methode.replace(/\s*/g,"")
-                    alarmConfigurationadd(this.form).then(res => {
-                        if (res.resultCode == 1) {
-                            this.$message({
-                                message: res.resultMsg,
-                                type: 'success'
-                            });
-                            this.$emit('arlem')
-                        } else {
-                            this.$message.error(res.resultMsg);
-                        }
-                    })
+                    //新增
+                    if (this.listdata.type == 0) {
+                        alarmConfigurationadd(this.form).then(res => {
+                            if (res.resultCode == 1) {
+                                this.$message({
+                                    message: res.resultMsg,
+                                    type: 'success'
+                                });
+                                this.$emit('arlem')
+                            } else {
+                                this.$message.error(res.resultMsg);
+                            }
+                        })
+                    } else {
+                        //修改
+                        alarmConfigurationmod(this.form).then(res => {
+                            if (res.resultCode == 1) {
+                                this.$message({
+                                    message: res.resultMsg,
+                                    type: 'success'
+                                });
+                                this.$emit('arlem')
+                            } else {
+                                this.$message.error(res.resultMsg);
+                            }
+                        })
+                    }
                 } else {
                 // console.log('error submit!!');
                 return false;

+ 14 - 11
src/pages/SystemSet/User/index.vue

@@ -89,7 +89,7 @@
       <el-table-column prop="name" label="操作" width="300px" align="center">
         <template slot-scope="scope">
           <!-- <el-button class="Colorbutton" >新增</el-button> -->
-          <el-button class="Colorbutton" >修改</el-button>
+          <el-button class="Colorbutton" @click="newalarmmod(scope)">修改</el-button>
           <el-button class="Colorbutton_red" @click="alarmele(scope)">删除</el-button>
         </template>
       </el-table-column>
@@ -448,19 +448,22 @@
         if (this.actives == 3) {
           this.dialogVisibledarm = true
           this.listdata = {
-            name: '新增告警配置'
+            name: '新增告警配置',
+            type: 0,
+          }
+        }
+      },
+      //修改告警
+      newalarmmod (data) {
+        if (this.actives == 3) {
+          this.dialogVisibledarm = true
+          this.listdata = {
+            name: '修改告警配置',
+            type: 1,
+            list: data.row
           }
         }
       },
-      // //修改告警
-      // newmod () {
-      //   if (this.actives == 3) {
-      //     this.dialogVisibledarm = true
-      //     this.listdata = {
-      //       name: '新增告警配置'
-      //     }
-      //   }
-      // },
       //告警删除
       alarmele (data) {
         this.dialogVisibledele = true