Update dianming.html

main
luoyonghuang 2 months ago
parent a10f391f85
commit 9a54ab08f0

@ -99,8 +99,8 @@ startAttendanceButton.addEventListener('click', async () => {
const response = await fetch('http://localhost:3000/api/random-call');
const data = await response.json();
if (data.student) {
currentStudent = data.student;
if (data.student_id && data.student_name) {
currentStudent = data;
studentNameDisplay.textContent = `当前学生: ${currentStudent.student_name}`;
presentButton.style.display = 'inline-block';
absentButton.style.display = 'inline-block';
@ -117,8 +117,8 @@ startAttendanceButton.addEventListener('click', async () => {
// 到场按钮点击事件
presentButton.addEventListener('click', async () => {
if (currentStudent) {
await updatePoints(currentStudent.student_id, 1); // 到场加1
alert(`${currentStudent.student_name} 已到,加1分`);
await updatePoints(currentStudent.student_id, 0.5); // 到场加0.5
alert(`${currentStudent.student_name} 已到,加0.5分`);
resetAttendance();
}
});
@ -126,7 +126,7 @@ presentButton.addEventListener('click', async () => {
// 没到按钮点击事件
absentButton.addEventListener('click', async () => {
if (currentStudent) {
await updatePoints(currentStudent.student_id, -1); // 未到减2
await updatePoints(currentStudent.student_id, -1); // 未到减1
alert(`${currentStudent.student_name} 未到减1分`);
resetAttendance();
}

Loading…
Cancel
Save