Browse Source

清理log语句 格式代码

develop
zhaoxianglong 1 year ago
parent
commit
6a6d00d1a7
  1. 23
      ruoyi-ui/src/views/system/non-automatic-warning/index.vue

23
ruoyi-ui/src/views/system/non-automatic-warning/index.vue

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

Loading…
Cancel
Save