diff --git a/src/views/plugin/workflow/mixins/ex-form.js b/src/views/plugin/workflow/mixins/ex-form.js index 630c700..9d8fb02 100644 --- a/src/views/plugin/workflow/mixins/ex-form.js +++ b/src/views/plugin/workflow/mixins/ex-form.js @@ -243,7 +243,7 @@ export default { if (typeof form.uploadrecord == "string") { form.uploadrecord = form.uploadrecord.split(""); } - startProcess(form) + startProcess({...form,forcestart: 0,isauto:0}) .then((res) => { if (res.data.data === "类似任务已经发起过,是否要强制发起") { this.$confirm(res.data.data + "?", "提示", { @@ -253,7 +253,7 @@ export default { }) .then(() => { // 强制发起重复任务 - startProcess({ ...form, forcestart: true }) + startProcess({ ...form, forcestart: 1,isauto:0 }) .then((res) => { if (isExForm === true) { resolve(done);