|
|
@@ -112,6 +112,9 @@
|
|
|
this.tmp_historyTask = res.data.items
|
|
|
let useridstr = ''
|
|
|
for (let i = 0; i < this.tmp_historyTask.length; i++) {
|
|
|
+ if (this.tmp_historyTask[i].assignee !== '') {
|
|
|
+ useridstr = useridstr + this.tmp_historyTask[i].assignee + ','
|
|
|
+ }
|
|
|
if (this.tmp_historyTask[i].users !== '') {
|
|
|
useridstr = useridstr + this.tmp_historyTask[i].users + ','
|
|
|
}
|
|
|
@@ -119,7 +122,7 @@
|
|
|
if (useridstr) {
|
|
|
useridstr = useridstr.substring(0, useridstr.length - 1)
|
|
|
}
|
|
|
- console.log(useridstr, 'useridstr')
|
|
|
+
|
|
|
this.getuserlist(useridstr)
|
|
|
})
|
|
|
.catch(err => {
|