|
@@ -224,7 +224,7 @@ export default {
|
|
|
complaintsNum: '', //投诉数
|
|
|
currentClassTimes: '', //当前课数
|
|
|
isSalaryNum: '', // 已结算
|
|
|
- totalClassTimes: '',// 未上颗数
|
|
|
+ totalClassTimes: '',// 未上课数
|
|
|
studentVisible: false, // 查看上课学员数的弹窗
|
|
|
courseVisible: false, // 课时调整弹窗
|
|
|
studentList: [],
|
|
@@ -294,9 +294,12 @@ export default {
|
|
|
findVipGroupTeachingRecord(obj).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.complaintsNum = res.data.baseInfo.complaintsNum;
|
|
|
- this.currentClassTimes = res.data.baseInfo.currentClassTimes;
|
|
|
+ // 当前课数
|
|
|
+ this.currentClassTimes = res.data.baseInfo.courseNoStartNum;
|
|
|
this.isSalaryNum = res.data.baseInfo.isSalaryNum;
|
|
|
- this.totalClassTimes = res.data.baseInfo.totalClassTimes - this.currentClassTimes;
|
|
|
+ // 未上课数
|
|
|
+ this.totalClassTimes = res.data.baseInfo.courseEndNum;
|
|
|
+ // this.totalClassTimes = res.data.baseInfo.totalClassTimes - this.currentClassTimes;
|
|
|
this.tableList = res.data.pageInfo.rows;
|
|
|
this.rules.total = res.data.pageInfo.total
|
|
|
}
|