update 项目合规流程

This commit is contained in:
赵霄
2023-12-18 16:10:09 +08:00
parent e357d749b6
commit cb9fac6f21
2 changed files with 21 additions and 6 deletions
@@ -967,6 +967,7 @@ export default {
this.$refs.userSelectModal.open()
},
handleBatchSelectorOk (list) {
// 转办不走这个方法
if (this.isTransfer) {
return
}
@@ -991,7 +992,8 @@ export default {
return
}
this.dataSource.forEach((item, index) => {
if (this.selectedRowKeys.includes(index)) {
// 给可选人的数据赋值
if (this.selectedRowKeys.includes(index) && item.canAssignFlag + '' === '1') {
item[fieldName] = list.map(tt => tt.id).join(',')
item[fieldName + '_dictText'] = list.map(tt => tt.realname + '(' + tt.username + ')').join(',')
this.$set(this.dataSource, index, item)