fix(rectification): remove static interview fallbacks
This commit is contained in:
@@ -112,7 +112,6 @@ function RectificationCandidateCards({
|
||||
<section className="rectification-candidates" aria-label="生时校正候选时间">
|
||||
<div className="rectification-candidates-heading">
|
||||
<strong>当前可能的出生时间</strong>
|
||||
<span>这次校正的收口是采用一个代表性时间作当前排盘。相邻分钟目前分不开,本会话以代表性时间收口,不确认唯一分钟。可以先采用,也可以继续补充事件或改选;新增证据后,候选和相对支持度会重新计算。</span>
|
||||
<span>相对支持度不是统计概率;采用不等于确认出生时间,也不会覆盖原始填报时间。</span>
|
||||
</div>
|
||||
<div className="rectification-candidate-list">
|
||||
@@ -1136,18 +1135,16 @@ export function RectificationAgenticChat(props: RectificationAgenticChatProps) {
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
{savedTime && (
|
||||
<div className="rectification-saved-wrap">
|
||||
<p className="rectification-saved" role="status">
|
||||
{savedStatus === "confirmed" ? "已确认校正时间" : "当前排盘时间(代表性时间,本会话不确认唯一分钟)"}:{savedTime}。后续排盘将使用该时间;你仍可继续补充事件或改选其他候选。
|
||||
</p>
|
||||
{savedStatus === "accepted" && onStartConsultation && (
|
||||
<div className="rectification-consult-handoff">
|
||||
<Button type="button" onClick={onStartConsultation}>
|
||||
用这个时间看盘
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
{savedTime && savedStatus === "confirmed" && (
|
||||
<p className="rectification-saved" role="status">
|
||||
已确认校正时间:{savedTime}
|
||||
</p>
|
||||
)}
|
||||
{savedTime && savedStatus === "accepted" && onStartConsultation && (
|
||||
<div className="rectification-consult-handoff">
|
||||
<Button type="button" onClick={onStartConsultation}>
|
||||
用这个时间看盘
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
{error && <p className="error-message" role="alert">{error}</p>}
|
||||
|
||||
Reference in New Issue
Block a user