This commit is contained in:
2026-01-22 13:38:10 +08:00
parent b350322626
commit 313fe64475
151 changed files with 13060 additions and 4411 deletions

View File

@@ -242,7 +242,6 @@ const getClassCheckDailyData = (id: string) => {
}
}
}).catch((err: any) => {
console.error('获取详情失败', err)
useMessage().error('获取详情失败')
}).finally(() => {
loading.value = false
@@ -261,7 +260,6 @@ const getStudentList = async (classCode: string) => {
studentList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取学生列表失败', err)
studentList.value = []
}
}
@@ -274,7 +272,6 @@ const getClassListData = async () => {
classList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取班号列表失败', err)
classList.value = []
}
}