|
@@ -122,6 +122,7 @@ export default {
|
|
|
workId: "",
|
|
|
examName: "",
|
|
|
courseCode: "",
|
|
|
+ courseId: "",
|
|
|
markTasks: {
|
|
|
workId: "",
|
|
|
userId: [],
|
|
@@ -148,6 +149,7 @@ export default {
|
|
|
this.workId = this.$route.params.workId;
|
|
|
this.examName = this.$route.params.name;
|
|
|
this.courseCode = this.$route.params.courseCode;
|
|
|
+ this.courseId = this.$route.params.courseId;
|
|
|
this.initMarker();
|
|
|
this.searchSelectedMarker();
|
|
|
//校验评卷工作是否开始,如果开始则不能删除评卷员
|
|
@@ -170,7 +172,7 @@ export default {
|
|
|
this.markTasks = {
|
|
|
workId: this.workId,
|
|
|
userIds: this.selectedIds,
|
|
|
- courseCode: this.courseCode,
|
|
|
+ courseId: this.courseId,
|
|
|
};
|
|
|
this.loading = true;
|
|
|
this.$http.post(MARKING_LOGIC_API + "/markTasks", this.markTasks).then(
|