|
@@ -550,7 +550,7 @@ export default {
|
|
|
.then((response) => {
|
|
|
if (response.data.resultCode == "0") {
|
|
|
self.studentPaper = response.data.data;
|
|
|
- self.examType = response.data.examType;
|
|
|
+ self.examType = self.studentPaper.examType;
|
|
|
self.paperMark = true;
|
|
|
console.log("paper", self.studentPaper);
|
|
|
} else {
|
|
@@ -600,7 +600,7 @@ export default {
|
|
|
.get(DATA_PROCESS_API + "/studentPapers/" + studentPaperId)
|
|
|
.then((response) => {
|
|
|
self.studentPaper = response.data;
|
|
|
- self.examType = response.data.examType;
|
|
|
+ self.examType = self.studentPaper.examType;
|
|
|
});
|
|
|
},
|
|
|
async getMarkedResultItems(markResultId) {
|