Browse Source

!2 修复最后一个任务节点挂载子表单formData没有值的问题

Merge pull request !2 from 马铃薯头/master
master
tony 3 years ago
committed by Gitee
parent
commit
9942a301d0
No known key found for this signature in database GPG Key ID: 173E9B9CA92EEF8F
  1. 2
      ruoyi-ui/src/views/flowable/task/todo/detail/index.vue

2
ruoyi-ui/src/views/flowable/task/todo/detail/index.vue

@ -448,8 +448,8 @@ export default {
const params = {taskId: this.taskForm.taskId}
getNextFlowNode(params).then(res => {
const data = res.data;
this.taskForm.formData = formData;
if (data) {
this.taskForm.formData = formData;
if (data.dataType === 'dynamic') {
if (data.type === 'assignee') { //
this.checkSendUser = true;

Loading…
Cancel
Save