|
@@ -444,12 +444,16 @@ export default {
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
+ let teachingTeacherIdList = this.maskForm.assistant.join(',')
|
|
|
+ if (teachingTeacherIdList.length <= 0) {
|
|
|
+ let teachingTeacherIdList = null
|
|
|
+ }
|
|
|
let obj = {
|
|
|
actualTeacherId: this.maskForm.teacher,
|
|
|
startClassTimeStr: this.maskForm.startTime,
|
|
|
endClassTimeStr: this.maskForm.endTime,
|
|
|
id: this.maskForm.id,
|
|
|
- teachingTeacherIdList: this.maskForm.assistant.join(',') || null,
|
|
|
+ teachingTeacherIdList,
|
|
|
classDate: this.maskForm.date
|
|
|
}
|
|
|
resetCourse(obj).then(res => {
|