|
@@ -964,8 +964,8 @@ export default {
|
|
name: this.leftForm.name,
|
|
name: this.leftForm.name,
|
|
offlineClassesNum: offline || 0,
|
|
offlineClassesNum: offline || 0,
|
|
onlineClassesNum: online || 0,
|
|
onlineClassesNum: online || 0,
|
|
- offlineClassesUnitPrice: this.rightForm.offlinePrice,
|
|
|
|
- onlineClassesUnitPrice: this.rightForm.onlinePrice,
|
|
|
|
|
|
+ offlineClassesUnitPrice: this.rightForm.offlinePrice || 0,
|
|
|
|
+ onlineClassesUnitPrice: this.rightForm.onlinePrice || 0,
|
|
paymentExpireDate: this.leftForm.signUpEnd,
|
|
paymentExpireDate: this.leftForm.signUpEnd,
|
|
registrationStartTime: this.leftForm.signUpStart,
|
|
registrationStartTime: this.leftForm.signUpStart,
|
|
singleClassMinutes: this.leftForm.classTime,
|
|
singleClassMinutes: this.leftForm.classTime,
|
|
@@ -973,8 +973,8 @@ export default {
|
|
userId: this.leftForm.teacher,
|
|
userId: this.leftForm.teacher,
|
|
vipGroupActivityId: this.leftForm.activeType,
|
|
vipGroupActivityId: this.leftForm.activeType,
|
|
vipGroupCategoryId: this.leftForm.courseType,
|
|
vipGroupCategoryId: this.leftForm.courseType,
|
|
- onlineTeacherSalary: this.rightForm.onlineCourse,
|
|
|
|
- offlineTeacherSalary: this.rightForm.offlineCourse,
|
|
|
|
|
|
+ onlineTeacherSalary: this.rightForm.onlineCourse || 0,
|
|
|
|
+ offlineTeacherSalary: this.rightForm.offlineCourse || 0,
|
|
giveTeachMode: this.centerForm.radio,
|
|
giveTeachMode: this.centerForm.radio,
|
|
subjectIdList: this.leftForm.subject,
|
|
subjectIdList: this.leftForm.subject,
|
|
}
|
|
}
|