eventhandleSubmit

This commit is contained in:
shijing 2022-11-18 09:08:29 +08:00
parent 5b1588f55c
commit e44c04a2b5
1 changed files with 5 additions and 1 deletions

View File

@ -261,7 +261,11 @@ export default {
});
},
onSubmit() {
this.$API.ecm.event.handle.req(this.form.id, this.form).then((res) => {
let params = {};
params.mark = this.form.mark;
params.handle_desc = this.form.handle_desc;
this.$API.ecm.event.handle.req(this.form.id, params).then((res) => {
this.$emit("success");
this.$message.success("操作成功");
return res;