fix(review): 验收冲突显示与闸门对齐 — 验收报 CONFLICT_UNRESOLVED 时回拉最新审稿并回灌冲突;未审稿不再误显「可直接验收」

This commit is contained in:
Yaojia Wang
2026-06-24 16:17:54 +02:00
parent d0c301349c
commit a4ef250fc9
4 changed files with 37 additions and 8 deletions

View File

@@ -9,6 +9,9 @@ import { ThinkingIndicator } from "@/components/ThinkingIndicator";
interface AcceptPanelProps {
projectId: string;
chapterNo: number;
// 本页是否已有审稿结果(进页带留痕 或 本次重审完成)。用于区分
// 「审过且 0 冲突→可直接验收」与「未审稿→先审稿」,避免把"未知"当"无冲突"。
reviewed: boolean;
conflictCount: number;
unresolvedCount: number;
// R3当前伏笔建议数验收前清单提醒只读不自动落库
@@ -22,6 +25,7 @@ interface AcceptPanelProps {
export function AcceptPanel({
projectId,
chapterNo,
reviewed,
conflictCount,
unresolvedCount,
foreshadowCount,
@@ -89,7 +93,9 @@ export function AcceptPanel({
<>
<p className="mb-2 text-xs text-ink-soft">
{conflictCount === 0
? "无冲突,可直接验收。"
? reviewed
? "无冲突,可直接验收。"
: "尚未审稿——建议先点「重新审稿」确认本章无冲突,再验收。"
: "全部冲突已裁决,可验收本章。"}
</p>
{/* R3验收前「本次将更新」清单预期落库口径以验收回执为准。 */}