|
@@ -481,7 +481,7 @@ export default {
|
|
|
await this.checkChange();
|
|
|
const data = await targetReportDetail({
|
|
|
examId: this.course.examId,
|
|
|
- courseCode: this.course.courseCode,
|
|
|
+ courseId: this.course.courseId,
|
|
|
teachCourseId: this.course.teachCourseId,
|
|
|
});
|
|
|
this.buildData(data);
|
|
@@ -489,7 +489,7 @@ export default {
|
|
|
async checkChange() {
|
|
|
const res = await targetReportChangeCheck({
|
|
|
examId: this.course.examId,
|
|
|
- courseCode: this.course.courseCode,
|
|
|
+ courseId: this.course.courseId,
|
|
|
teachCourseId: this.course.teachCourseId,
|
|
|
report: true,
|
|
|
});
|
|
@@ -860,7 +860,7 @@ export default {
|
|
|
const res = await targetReportSave({
|
|
|
examId: this.course.examId,
|
|
|
courseName: this.course.courseName,
|
|
|
- courseCode: this.course.courseCode,
|
|
|
+ courseId: this.course.courseId,
|
|
|
teachCourseId: this.course.teachCourseId,
|
|
|
...this.courseBasicInfo,
|
|
|
}).catch(() => {});
|
|
@@ -877,7 +877,7 @@ export default {
|
|
|
const res = await downloadByApi(() => {
|
|
|
const datas = {
|
|
|
examId: this.course.examId,
|
|
|
- courseCode: this.course.courseCode,
|
|
|
+ courseId: this.course.courseId,
|
|
|
teachCourseId: this.course.teachCourseId,
|
|
|
};
|
|
|
return exportTargetReport(datas);
|