Files
ClassFeedback/.claude/rules/37-status-panel.md
小Q(李秋燕) dcf1049b92 优化课评系统:新增速记符号、状态面板、快速编辑功能
- 新增36-shorthand-learning.md:速记符号阶梯学习指南
- 新增37-status-panel.md:课评状态管理面板
- 新增38-quick-edit.md:快速编辑功能规则
- 更新40-keping-快速入门.md:优化快速入门指南v3.0
- 新增CHANGELOG.md:版本变更日志
- 更新第7周、第8周班级汇总文件
- 规范化学生档案存储
- 完善补课/体验学生处理逻辑
2026-04-25 20:56:12 +08:00

77 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 课评状态管理面板
> 解决"待确认"状态不直观问题,提升流程闭环率
---
## 📊 状态类型
| 状态 | 图标 | 说明 |
|:----:|:----:|:-----|
| 已确认 | ☑️ | 已审核通过,已双轨保存 |
| 待确认 | ⏳ | 已生成,等待教师确认 |
| 待生成 | ⏸️ | 教师未输入表现 |
| 缺勤 | 🚫 | 学生未到校 |
---
## 🔄 状态流转规则
```
教师输入表现 → 待确认 → 教师确认 → 已确认 → 自动双轨保存
↓ ↑
标记缺勤 修改后重新生成
```
---
## 📋 班级汇总文件格式
`memory/class-evaluation-summary/第X周/{班级}.md`文件顶部添加状态面板:
```markdown
---
class: 发现世界-周四19点
week: 7
course: DISC-007
generated_at: 2026-04-17T16:00:00
status:
total: 2
confirmed: 1
pending: 1
missing: 0
students:
- name: 乔乔
status: confirmed
- name: 昊昊
status: pending
---
## 本周课评状态
| 学生 | 状态 | 操作 |
|:-----|:----:|:----:|
| 乔乔 | ☑️ 已确认 | [查看] [修改] |
| 昊昊 | ⏳ 待确认 | [确认] [修改] |
```
---
## 🔔 操作指令
| 教师输入 | 功能 |
|:---------|:-----|
| `确认全部` | 一键确认所有待确认课评 |
| `查看待确认` | 只显示待确认学生 |
| `确认{学生}` | 确认单个学生课评 |
| `修改{学生}XXX` | 修改指定学生课评内容 |
---
## 📊 数据持久化
状态信息保存在班级汇总文件的YAML Frontmatter中便于
- 快速统计课评完成情况
- 追踪学生课评状态变化
- 支持批量操作