feat: 完善课程列表和直播纪要功能

- 使用CSV数据更新课程列表,支持多单元和课程状态显示
- 添加"即将开始"状态判断逻辑(今天或明天的课程)
- 删除直播纪要的"直播中"图标
- 修复时间轴排序,确保从早到晚显示
- 修复项目案例详情内容左对齐样式
- 修复组件语法错误和重复代码问题

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-08-27 10:39:38 +08:00
parent a78e2c2414
commit ed5b65ea41
9 changed files with 283 additions and 46 deletions

View File

@@ -83,6 +83,14 @@
background-image: url("@/assets/images/Common/time_line_clock_icon.png");
background-size: 100% 100%;
}
.time-line-lock-icon {
width: 12px;
height: 12px;
background-image: url("@/assets/images/Common/time_line_lock_icon.png");
background-size: 100% 100%;
opacity: 0.5;
}
.time-line-item {
width: 248px;
height: 74px;
@@ -148,6 +156,19 @@
background-size: 100% 100%;
}
}
.pending {
opacity: 0.6;
cursor: not-allowed;
> p {
color: #86909c;
}
.time-line-item-info {
color: #86909c;
}
}
.coming {
&::before {
content: "即将开始";