diff --git a/src/views/plugin/workflow/process/components/user-option.vue b/src/views/plugin/workflow/process/components/user-option.vue index 9bc5dfb..3a516ba 100644 --- a/src/views/plugin/workflow/process/components/user-option.vue +++ b/src/views/plugin/workflow/process/components/user-option.vue @@ -68,7 +68,6 @@ d.type && d.value), this.switchAll) + const list = this.data.filter(d => d.type && d.value).map(d => { + return { + type: d.type, + value: d.value.join(','), + text: d.text + } + }) + this.$emit('submit', list, this.switchAll) this.visible = false }, handleClose(done) {