Skip to content

Commit

Permalink
bugfix: 审批接口传参错误修复
Browse files Browse the repository at this point in the history
  • Loading branch information
ywywZhou authored and luofann committed Oct 31, 2023
1 parent e73295b commit 138be4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/desktop/src/pages/task/TaskExecute/TaskOperation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1328,8 +1328,8 @@
task_id: this.subProcessTaskId || this.instance_id,
node_id: id
}
// 如果存在子流程任务节点时则不需要传subprocess_id
if (!this.subProcessTaskId) {
// 如果存在子流程任务节点时则需要传subprocess_id
if (this.subProcessTaskId) {
let { subprocess_stack: stack } = this.nodeDetailConfig
if (stack) {
stack = JSON.parse(stack)
Expand Down

0 comments on commit 138be4b

Please sign in to comment.