eventhandleSubmit
This commit is contained in:
parent
5b1588f55c
commit
e44c04a2b5
|
@ -261,7 +261,11 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onSubmit() {
|
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.$emit("success");
|
||||||
this.$message.success("操作成功");
|
this.$message.success("操作成功");
|
||||||
return res;
|
return res;
|
||||||
|
|
Loading…
Reference in New Issue