|
@@ -967,6 +967,10 @@ export default {
|
|
this.toggleExamSelection(
|
|
this.toggleExamSelection(
|
|
this.examTableData.find(p => p.id == exam.id)
|
|
this.examTableData.find(p => p.id == exam.id)
|
|
);
|
|
);
|
|
|
|
+ this.examTableData.splice(
|
|
|
|
+ this.examTableData.findIndex(p => p.id == exam.id),
|
|
|
|
+ 1
|
|
|
|
+ );
|
|
this.selectedExam.splice(index, 1);
|
|
this.selectedExam.splice(index, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -977,6 +981,10 @@ export default {
|
|
this.toggleMarkSelection(
|
|
this.toggleMarkSelection(
|
|
this.markTableData.find(p => p.id == mark.id)
|
|
this.markTableData.find(p => p.id == mark.id)
|
|
);
|
|
);
|
|
|
|
+ this.markTableData.splice(
|
|
|
|
+ this.markTableData.findIndex(p => p.id == mark.id),
|
|
|
|
+ 1
|
|
|
|
+ );
|
|
this.selectedMark.splice(index, 1);
|
|
this.selectedMark.splice(index, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|