This commit is contained in:
chengpeng12
2025-04-27 18:02:32 +08:00
parent 28e09339dd
commit 0513f64d4d

View File

@@ -269,7 +269,7 @@ export default {
// 获取人员信息
getUserList(val, key) {
if (StrUtil.isNotBlank(val)) {
const newArr = this.modelerStore.userList?.filter(i => val.split(',').includes(i.userId.toString()))
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;