|
|
@@ -166,7 +166,7 @@
|
|
|
multiple
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="(item, index) in nextUserList1"
|
|
|
+ v-for="(item, index) in nextUserList"
|
|
|
:key="index"
|
|
|
:label="item.fullname"
|
|
|
:value="item.userId"
|
|
|
@@ -420,8 +420,6 @@
|
|
|
currentButton: null,
|
|
|
// 流转下一步可选办理人列表
|
|
|
nextUserList: [],
|
|
|
- // 从办人员可选办理人列表
|
|
|
- nextUserList1: [],
|
|
|
// 流转/退回操作参数
|
|
|
processParams: {
|
|
|
content: '', // 意见
|
|
|
@@ -604,15 +602,8 @@
|
|
|
const resp = await getCostProjectDetail({
|
|
|
id: this.project.projectId,
|
|
|
})
|
|
|
- // 负责人id
|
|
|
- let userId = resp.value ? resp.value.leaderIds.split(',') : []
|
|
|
- // 从办人员可选办理人列表
|
|
|
- this.nextUserList1 = res.value.filter(
|
|
|
- (item) => !userId.includes(item.userId)
|
|
|
- )
|
|
|
} catch (e) {
|
|
|
this.nextUserList = []
|
|
|
- this.nextUserList1 = []
|
|
|
}
|
|
|
},
|
|
|
// 获取主办人员和从办人员
|