/** * 班级操行分管理系统 - 学生端作业情况JS * * 开发者: Canglan * 版权归属: Sea Network Technology Studio * * 版权所有 © Sea Network Technology Studio */ (function() { 'use strict'; const STUDENT_ID = window.PAGE_CONFIG.studentId; async function loadHomework() { const res = await apiGet(`/api/student/homework/${STUDENT_ID}`); if (res && res.success) { let html = ''; res.data.homework.forEach(hw => { const pointsDisplay = hw.points ? hw.points + '分' : '-'; html += `