From 0d0a73d5f3b220399847ab64f6e020c2ecf29cc7 Mon Sep 17 00:00:00 2001 From: gubeiqing <1653777235@qq.com> Date: Wed, 4 Jun 2025 11:32:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=9C=A8=E6=B5=81=E7=A8=8B=E8=AE=BE?= =?UTF-8?q?=E8=AE=A1=E9=A1=B5=E9=9D=A2=E4=B8=8A=EF=BC=8C=E8=8A=82=E7=82=B9?= =?UTF-8?q?=E4=B9=8B=E9=97=B4=E5=88=87=E6=8D=A2=E6=97=B6=E6=8E=A7=E5=88=B6?= =?UTF-8?q?=E5=8F=B0=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/components/Process/panel/taskPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-ui/src/components/Process/panel/taskPanel.vue b/ruoyi-ui/src/components/Process/panel/taskPanel.vue index 0b992059..31e4fd59 100755 --- a/ruoyi-ui/src/components/Process/panel/taskPanel.vue +++ b/ruoyi-ui/src/components/Process/panel/taskPanel.vue @@ -272,7 +272,7 @@ export default { const newArr = this.modelerStore.userList?.filter(i => val.toString().split(',').includes(i.userId.toString())) this.bpmnFormData[key] = newArr.map(item => item.nickName).join(','); if ('assignee' === key) { - this.selectData[key] = newArr.find(item => item.userId.toString() === val).userId; + this.selectData[key] = newArr.find(item => item.userId.toString() === val.toString()).userId; } else { this.selectData[key] = newArr.map(item => item.userId); }