!19 .修复流程创建器页面,多个用户任务之间指定人员错乱的问题
Merge pull request !19 from chengpeng12/master
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user