Merge remote-tracking branch 'yx/250605-added-yzt'

This commit is contained in:
joshen
2025-06-18 13:33:35 +08:00

View File

@@ -469,11 +469,11 @@
data.dataSource = res.data.records || [];
data.total = res.data.total;
}else if(props.reportType=='offcourse' && props.secondReportType=='teacher'){
const res = await api.offCourseTeacherReportList({page: data.pageNo,size: data.pageSize,offCourseId: props.currentId});
const res = await api.offCourseTeacherReportList({page: data.pageNo,size: data.pageSize,offCoursePlanId: props.currentId});
data.dataSource = res.data.records || [];
data.total = res.data.total;
}else if(props.reportType=='offcourse' && props.secondReportType=='student'){
const res = await api.offCourseStudentReportList({page: data.pageNo,size: data.pageSize,offCourseId: props.currentId});
const res = await api.offCourseStudentReportList({page: data.pageNo,size: data.pageSize,offCoursePlanId: props.currentId});
data.dataSource = res.data.records || [];
data.total = res.data.total;
}else if(props.reportType=='online' && props.secondReportType=='content'){