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

@@ -289,7 +289,6 @@ const getDeptListData = async () => {
deptList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取系部列表失败', err)
deptList.value = []
}
}
@@ -302,7 +301,6 @@ const getClassListData = async () => {
classList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取班级列表失败', err)
classList.value = []
}
}
@@ -316,7 +314,6 @@ const getStudentListData = async () => {
studentList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取学生列表失败', err)
studentList.value = []
}
}