|
@@ -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;
|