From 593e453a23e4142d1b07537a4840c6153bbb1504 Mon Sep 17 00:00:00 2001 From: ssc <273702440@qq.com> Date: Fri, 7 Apr 2023 15:18:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=A8=A1=E5=9E=8B=E6=9D=83=E9=99=90?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../process/components/user-option.vue | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) 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) {