|
@@ -84,7 +84,7 @@
|
|
|
url: paperUrl,
|
|
|
dataType: "json",
|
|
|
success: function (data) {
|
|
|
- paperqQuestions = data.subjectives;
|
|
|
+ paperqQuestions = data.questions;
|
|
|
}
|
|
|
})
|
|
|
$.ajax({
|
|
@@ -125,7 +125,7 @@
|
|
|
"italic": true,
|
|
|
"danger": true
|
|
|
},
|
|
|
- "value": "(字数统计:" + textCount(question.studentAnswer) + ")"
|
|
|
+ "value": "(字数统计:" + textCount(question.answer) + ")"
|
|
|
}]
|
|
|
};
|
|
|
let standardTitle = {
|
|
@@ -143,7 +143,7 @@
|
|
|
}
|
|
|
$(renderRichText(paperQuestion.body)).appendTo(this.holder);
|
|
|
$(renderSection(answerTitle)).appendTo(this.holder);
|
|
|
- $(renderRichText(question.studentAnswer)).appendTo(this.holder);
|
|
|
+ $(renderRichText(question.answer)).appendTo(this.holder);
|
|
|
$(renderSection(standardTitle)).appendTo(this.holder);
|
|
|
$(renderRichText(paperQuestion.answer)).appendTo(this.holder);
|
|
|
trialDetailModal.setContent($('#trial-detail-content'));
|