This commit is contained in:
Dai 2024-07-25 22:46:01 +08:00
parent 3117b3ebf8
commit 432741b119
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ class StudentController extends BaseController
'time_on' => $v['time'],
'subject' => $v['subject_name'],
'teacher_name' => $v['teacher_name'],
'time_num' => $v['hour'] + '/h',
'time_num' => $v['hour'] . '/h',
];
$stu_nmae = $v['student_name'];
}

View File

@ -76,7 +76,7 @@ class TeacherScheduleTimeController extends BaseController
'subject' => $v['english_name'],
'teacher_name' => $v['teacher_name'],
'student_name' => implode(',', $student),
'time_num' => $v['hour'] + '/h',
'time_num' => $v['hour'] . '/h',
];
$stu_nmae = $v['teacher_name'];
}