feat: 调整教师团队管理表格内容

This commit is contained in:
QDKF 2025-09-23 19:20:43 +08:00
parent 17ed40fc23
commit 6b3846ea50

View File

@ -68,7 +68,6 @@ interface TeacherItem {
teacherName: string
teacherId: string
role: string
studentId: string
teachingClass: string
department: string
joinTime: string
@ -129,12 +128,6 @@ const columns: DataTableColumns<TeacherItem> = [
width: 100,
align: 'center'
},
{
title: '成员',
key: 'studentId',
width: 120,
align: 'center'
},
{
title: '任教班级',
key: 'teachingClass',
@ -362,7 +355,6 @@ const loadData = async () => {
teacherName: teacher.name || '未知教师',
teacherId: teacher.id,
role: teacher.title || '教师',
studentId: teacher.id,
teachingClass: '当前课程',
department: '教学团队',
joinTime: new Date().toLocaleString()