diff --git a/app/components/reviews/ReviewPointsList.tsx b/app/components/reviews/ReviewPointsList.tsx index 14e7577..69b5937 100644 --- a/app/components/reviews/ReviewPointsList.tsx +++ b/app/components/reviews/ReviewPointsList.tsx @@ -1746,16 +1746,16 @@ export function ReviewPointsList({ {!value.page && (reviewPoint.contentPage && !reviewPoint.contentPage[key]) && ( )} - {/* 缺失显示 */} - {!res && ( + {/* 缺失显示:仅在无值时显示 */} + {!res && !value.value && ( 缺失 )} - - {/* 主要值显示 */} - {res && ( + + {/* 主要值显示:有值就显示,不受res影响 */} + {value.value && ( )}