1
This commit is contained in:
@@ -116,6 +116,13 @@ defineExpose({ load })
|
||||
<el-table-column label="检测框" min-width="150" show-overflow-tooltip>
|
||||
<template #default="{ row }">{{ boxText(row) }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="预判" width="100">
|
||||
<template #default="{ row }">
|
||||
<!-- RF-DETR 上报后异步预判:高分检出标疑似真目标(画面里可能是真动物,慎通过) -->
|
||||
<el-tag v-if="row.suspectReal === 1" type="danger" size="small">疑似真目标</el-tag>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="状态" width="90">
|
||||
<template #default="{ row }">
|
||||
<el-tag :type="(statusMap[row.status] || {}).type || 'info'" size="small">{{ (statusMap[row.status] || {}).text || row.status }}</el-tag>
|
||||
|
||||
Reference in New Issue
Block a user