feat: 添加自定义滚动条样式,优化布局和组件结构

This commit is contained in:
2026-05-22 17:02:07 +08:00
parent d3cb786edb
commit c286db68b1
10 changed files with 125 additions and 15 deletions
+6 -1
View File
@@ -1,7 +1,12 @@
// app/interfaces/answer.ts - 前端和本地 API 之间使用的响应类型
/** OCS 支持的题型;空字符串表示不指定题型,交给模型根据题目判断 */
export type QuestionType = "" | "single" | "multiple" | "judgement" | "completion";
export type QuestionType =
| ""
| "single"
| "multiple"
| "judgement"
| "completion";
/** 答题接口请求体,字段名保持旧 Python 服务和 OCS AnswererWrapper 兼容 */
export interface ISearchRequest {