图像评估的功能

This commit is contained in:
lSun 2025-10-22 13:39:46 +08:00
parent 9a61c654ba
commit 46dc5013fc
1 changed files with 4 additions and 3 deletions

View File

@ -236,7 +236,8 @@ export default {
recognizedCount: record.bzNum || 0, recognizedCount: record.bzNum || 0,
unrecognizedCount: record.wbzNum || 0, unrecognizedCount: record.wbzNum || 0,
isSure: record.isSure, isSure: record.isSure,
operId: record.id operId: record.operaId,
id: record.id,
})); }));
// - isActive // - isActive
this.initializeSelectedImages(records); this.initializeSelectedImages(records);
@ -513,7 +514,7 @@ export default {
if (selectedInfo.length === 0) { if (selectedInfo.length === 0) {
// this.$message.warning(''); // this.$message.warning('');
// return; // return;
this.handleConfirm(this.addId,"",id ); this.handleConfirm(this.addId,null,id );
}else{ }else{
// ID // ID
const imageIds = selectedInfo.map(item => item.imageId); const imageIds = selectedInfo.map(item => item.imageId);
@ -533,7 +534,7 @@ export default {
try { try {
// //
const res = await updateImageSureAPI({ const res = await updateImageSureAPI({
operId: operId, operaId: operId,
imageId:imageIds, imageId:imageIds,
id:id id:id
}); });