|
|
@ -148,6 +148,7 @@ |
|
|
|
sortable |
|
|
|
/> |
|
|
|
<el-table-column |
|
|
|
:formatter="formatter.getChineseName" |
|
|
|
align="center" |
|
|
|
label="受理人" |
|
|
|
prop="shouliren" |
|
|
@ -528,12 +529,8 @@ export default { |
|
|
|
shigongdanweiDianhua: this.multipleSelection[0].shigongdanweiDianhua, |
|
|
|
xiadariqi: this.formatter.dateFormat('YYYY-MM-dd') |
|
|
|
} |
|
|
|
if ( |
|
|
|
this.multipleSelection[0].shebeileixing !== undefined && |
|
|
|
this.multipleSelection[0].shebeileixing !== null |
|
|
|
) { |
|
|
|
this.title = |
|
|
|
'任务分配(' + this.multipleSelection[0].shebeileixing + ')' |
|
|
|
if (this.multipleSelection[0].shebeileixing) { |
|
|
|
this.title = '任务分配(' + this.multipleSelection[0].shebeileixing + ')' |
|
|
|
} |
|
|
|
this.dialogVisible = true |
|
|
|
this.$nextTick(() => { |
|
|
@ -736,7 +733,9 @@ export default { |
|
|
|
}, |
|
|
|
selectDepartmentUser(val) { |
|
|
|
this.renlingren = [] |
|
|
|
this.renwudan.teamId = undefined |
|
|
|
this.getTeamList(val) |
|
|
|
this.getUserList(val) |
|
|
|
}, |
|
|
|
getUserList(val) { |
|
|
|
this.api({ |
|
|
@ -746,7 +745,12 @@ export default { |
|
|
|
departmentId: val |
|
|
|
} |
|
|
|
}).then((data) => { |
|
|
|
this.users = data |
|
|
|
this.users = data.map(row => { |
|
|
|
return { |
|
|
|
id: row.id, |
|
|
|
name: row.nickname |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
openZhongjian() { |
|
|
@ -928,7 +932,7 @@ export default { |
|
|
|
}) |
|
|
|
}, |
|
|
|
selectTeamUser(val) { |
|
|
|
console.log(this.teams) |
|
|
|
this.renlingren = [] |
|
|
|
const _this = this |
|
|
|
for (let i = 0; i < this.teams.length; i++) { |
|
|
|
if (this.teams[i].id === val) { |
|
|
|