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

Loading…
Cancel
Save