Merge remote-tracking branch 'origin/bonus-ai' into bonus-ai

This commit is contained in:
jiang 2024-12-09 12:09:32 +08:00
commit f0bd4a1b27
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