|
|
@ -22,9 +22,10 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { eventSubscription } from "@/api/system/NonAutomaticWarning"; |
|
|
|
import { eventSubscription } from '@/api/system/NonAutomaticWarning' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: "NonAutomaticWarning", |
|
|
|
name: 'NonAutomaticWarning', |
|
|
|
data() { |
|
|
|
return { |
|
|
|
// 表单参数 |
|
|
@ -47,9 +48,9 @@ export default { |
|
|
|
], |
|
|
|
IP: [ |
|
|
|
{ required: true, message: '请输入请求端口', trigger: 'blur' } |
|
|
|
], |
|
|
|
] |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
// 表单重置 |
|
|
@ -63,21 +64,19 @@ export default { |
|
|
|
// APPSECRET:null, |
|
|
|
// URI:null, |
|
|
|
// IP:null |
|
|
|
}; |
|
|
|
this.resetForm("form"); |
|
|
|
} |
|
|
|
this.resetForm('form') |
|
|
|
}, |
|
|
|
/** 提交按钮 */ |
|
|
|
submitForm() { |
|
|
|
this.$refs["form"].validate(valid => { |
|
|
|
this.$refs['form'].validate(valid => { |
|
|
|
if (valid) { |
|
|
|
console.log(this.form) |
|
|
|
eventSubscription(this.form).then((response)=>{ |
|
|
|
console.log(response) |
|
|
|
eventSubscription(this.form).then(response => { |
|
|
|
}) |
|
|
|
this.reset() |
|
|
|
} |
|
|
|
}); |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
</script> |
|
|
|