diff --git a/app/components/reviews/ReviewPointsList.tsx b/app/components/reviews/ReviewPointsList.tsx index 7871ea4..d6f7766 100644 --- a/app/components/reviews/ReviewPointsList.tsx +++ b/app/components/reviews/ReviewPointsList.tsx @@ -634,6 +634,9 @@ export function ReviewPointsList({ } else if (statusFilter === 'error') { // 过滤"错误"状态 matchesStatus = point.result === false && point.status === 'error'; + } else if (statusFilter === 'notApplicable') { + // 过滤"未涉及"状态 + matchesStatus = point.status === 'notApplicable' || point.status === 'not_applicable'; } // console.log('筛选point', point); @@ -749,10 +752,15 @@ export function ReviewPointsList({ {/* 未涉及数量 */}
-
+
+