feat(review): 实现复习内容滚动展示与交互

- Welcome.vue 新增复习内容水平滚动条,展示报告/残片摘要
- 新增 ReviewDetail.vue 复习详情页,展示完整内容及会话上下文
- 新增 review.ts API 模块,路由注册 /review/detail/:type/:id
This commit is contained in:
2026-05-23 19:22:55 +08:00
parent 3a3a96da3c
commit 52045ecbeb
5 changed files with 416 additions and 0 deletions
+5
View File
@@ -27,6 +27,11 @@ const routes: RouteRecordRaw[] = [
component: () => import("@/components/Review.vue"),
meta: { requiresAuth: true },
},
{
path: "/review/detail/:type/:id",
component: () => import("@/components/ReviewDetail.vue"),
meta: { requiresAuth: true },
},
{
path: "/start-task/:taskNum",
name: "start-task",