根据标注人和审核人的个数及文件个数 下发标注任务
This commit is contained in:
parent
e985424ad6
commit
ed3672da50
|
|
@ -241,10 +241,10 @@ export default {
|
|||
let reviewers = [];
|
||||
this.tableData.forEach((item) => {
|
||||
if (item.type === '0') {
|
||||
reviewers.push(item.id);
|
||||
reviewers.push(item);
|
||||
}
|
||||
if (item.type === '1') {
|
||||
annotators.push(item.id);
|
||||
annotators.push(item);
|
||||
}
|
||||
})
|
||||
this.form.annotators = annotators;
|
||||
|
|
|
|||
|
|
@ -224,10 +224,10 @@ export default {
|
|||
let reviewers = []
|
||||
this.tableData.forEach((item) => {
|
||||
if (item.type === '0') {
|
||||
reviewers.push(item.id)
|
||||
reviewers.push(item)
|
||||
}
|
||||
if (item.type === '1') {
|
||||
annotators.push(item.id)
|
||||
annotators.push(item)
|
||||
}
|
||||
})
|
||||
this.form.annotators = annotators
|
||||
|
|
|
|||
Loading…
Reference in New Issue