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