v2.1更新

This commit is contained in:
2026-05-26 13:47:01 +08:00
parent c575d711ee
commit f84c9d3efb
26 changed files with 1482 additions and 567 deletions

View File

@@ -23,7 +23,7 @@ async function loadHomework() {
statusDisplay = getStatusBadge(hw.status, 'homework');
}
// 扣分显示
const pointsDisplay = hw.points ? `<span style="color: #e53e3e;">${hw.points}分</span>` : '-';
const pointsDisplay = hw.points ? `<span class="text-danger">${hw.points}分</span>` : '-';
html += `<tr>
<td>${escapeHtml(hw.title)}</td>