Files
AIPortPilot/frontend/src/app/(investor)/threads/[id]/page.tsx
T
selfrelease a4044baa31 feat(frontend): P2 页面开发 — 今日行动中心 + 对比 + 决策线程 + OODA + 助推追踪 + 密级标签
- 今日行动中心: 6 区块结构(AI早报/必须处理/建议关注/增长机会/等待他人/已完成)
- 多企业对比: 集成 CompareMode 组件 + 企业选择器
- 决策线程列表/详情: 集成 ThreadList/ThreadDetail 组件
- OODA 决策循环: 四阶段可视化 + 决策延迟追踪
- 助推效果追踪: 采纳率/行动率/疲劳度指标面板
- 信息分级标识: 4 级密级标签组件(公开/内部/机密/绝密)
2026-07-19 19:02:32 +08:00

35 lines
1.4 KiB
TypeScript

/** 决策线程详情页 — 状态机时间线 + 关联事件 + AAR 链接。 */
"use client";
import { ThreadDetail } from "@/components/threads/ThreadDetail";
import type { TimelineNode } from "@/components/threads/ThreadDetail";
import type { RelatedEvent } from "@/components/threads/ThreadDetail";
/** 决策线程详情页面。 */
export default function ThreadDetailPage({ params }: { params: { id: string } }) {
const timeline: TimelineNode[] = [
{ status: "identified", label: "已识别", date: "2026-07-09", description: "Runway 不足 7 月,弱信号触发", active: true },
{ status: "analyzing", label: "分析中", date: "2026-07-12", description: "对比天使+ vs Pre-A 方案", active: true },
{ status: "acted", label: "已行动", date: "—", active: false },
{ status: "closed", label: "已关闭", date: "—", active: false },
];
const relatedEvents: RelatedEvent[] = [
{ type: "risk", title: "现金 Runway 不足 7 月", href: "/risks" },
{ type: "report", title: "2026 年 6 月月报", href: "/reports" },
{ type: "task", title: "准备天使+轮 BP", href: "/tasks" },
];
return (
<ThreadDetail
threadId={params.id}
title="量子芯微 融资策略:天使+ vs Pre-A"
company="量子芯微"
status="analyzing"
timeline={timeline}
relatedEvents={relatedEvents}
/>
);
}