根据标注人和审核人的个数及文件个数 下发标注任务

This commit is contained in:
weiweiw 2024-12-04 17:50:40 +08:00
parent e985424ad6
commit ed3672da50
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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