123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <template>
- <div id="paperView">
- <div id="paperName">{{ paperStruct.name }}</div>
- <div id="studentInfoDiv">
- <table id="studentInfoTable" border>
- <thead>
- <tr>
- <th>考试ID</th>
- <th>学号</th>
- <th>姓名</th>
- <th>课程</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{ examRecordData.id }}</td>
- <td>{{ examRecord.studentCode }}</td>
- <td>{{ examRecord.studentName }}</td>
- <td>{{ courseInfo.name }}({{ courseInfo.code }})</td>
- </tr>
- </tbody>
- </table>
- </div>
- <!-- 遍历大题 -->
- <div
- v-for="(questionGroup, index) in paperStruct.questionGroupList"
- :key="index"
- class="mainQuestionDiv"
- >
- <div style="font-size: 16px;font-weight: bold;">
- {{ toChineseNumber(index + 1) }}、{{ questionGroup.groupName }}({{
- questionGroup.groupScore
- }}分)
- </div>
- <div>{{ questionGroup.score }}</div>
- <!-- 遍历大题下的小题 -->
- <div
- v-for="(questionWrapper, index) in questionGroup.questionWrapperList"
- :key="index"
- >
- <div
- v-for="(question, index) in questionWrapper.questionList"
- :key="index"
- >
- <div style="display: flex;flex-direction:row;">
- <div v-html="restoreAudio(question.body)"></div>
- </div>
- <div
- v-for="(questionUnit, index) in question.questionUnitList"
- :key="index"
- >
- <div style="display: flex;flex-direction:row;">
- <div>{{ questionUnit.order }}、</div>
- <div v-html="restoreAudio(questionUnit.body)"></div>
- <span>({{ questionUnit.questionScore }}分)</span>
- </div>
- <div
- v-for="(option, index) in questionUnit.quesOptions"
- :key="index"
- >
- <div style="display: flex;flex-direction:row;">
- <div>{{ option.letter }}.</div>
- <div v-html="restoreAudio(option.body)"></div>
- </div>
- </div>
- <div>
- <div
- style="display: flex;flex-direction:row;color: green;font-weight: bold;"
- >
- <div>标准答案:</div>
- <span v-html="questionUnit.correctAnswer"></span>
- </div>
- <div style="color: blue;font-weight: bold;">
- 学生答案:<span v-html="questionUnit.studentAnswer"></span>
- <i
- class="el-icon-check"
- v-show="
- questionUnit.isObjectiveQuestion && questionUnit.isRight
- "
- ></i>
- <i
- class="el-icon-close"
- v-show="
- questionUnit.isObjectiveQuestion && !questionUnit.isRight
- "
- ></i>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- courseId: "",
- examRecordDataId: "",
- examRecordData: {},
- examRecord: {},
- courseInfo: {},
- paperStruct: {},
- examQuestionList: []
- };
- },
- methods: {
- getExamRecordData() {
- this.$http
- .get("/api/ecs_oe_admin/exam/record/data/findExamRecordDataEntity", {
- params: { examRecordDataId: this.examRecordDataId }
- })
- .then(response => {
- this.examRecordData = response.data;
- this.examRecord = response.data.examRecord;
- });
- },
- getCourseInfo() {
- this.$http.get("/api/ecs_core/course/" + this.courseId).then(response => {
- this.courseInfo = response.data;
- });
- },
- getPaperData() {
- this.$http
- .get(
- "/api/ecs_oe_admin/examRecordPaperStruct/getExamRecordPaperStruct",
- { params: { examRecordDataId: this.examRecordDataId } }
- )
- .then(response => {
- this.paperStruct = response.data.defaultPaper;
- var questionGroupList = this.paperStruct.questionGroupList; //大题集合
- this.$http
- .get(
- "/api/ecs_oe_admin/examRecordQuestions/getExamRecordQuestions",
- { params: { examRecordDataId: this.examRecordDataId } }
- )
- .then(response => {
- this.examQuestionList = response.data.examQuestionEntities;
- var order = 0;
- for (var i = 0; i < questionGroupList.length; i++) {
- var questionGroup = questionGroupList[i]; //大题
- var questionWrapperList = questionGroup.questionWrapperList; //大题下小题集合
- for (var j = 0; j < questionWrapperList.length; j++) {
- var questionWrapper = questionWrapperList[j];
- order += questionWrapper.questionUnitWrapperList.length;
- this.getQuestionContent(
- questionWrapper.questionId,
- questionWrapper,
- order
- );
- }
- }
- });
- });
- },
- getQuestionContent(questionId, questionWrapper, order) {
- var params = {
- examId: this.examRecordData.examRecord.examId,
- courseCode: this.courseInfo.code,
- groupCode: this.examRecordData.examRecord.paperType,
- questionId: questionId
- };
- this.$http
- .post("/api/ecs_ques/default_question/question", params)
- .then(response => {
- var question = response.data.masterVersion;
- var questionUnitList = question.questionUnitList;
- var num = questionUnitList.length;
- for (var i = 0; i < questionUnitList.length; i++) {
- this.reOrderOptions(questionUnitList[i], order - num + 1);
- num--;
- }
- var questionList = questionWrapper.questionList;
- if (!questionList) {
- questionList = [];
- questionList.push(question);
- } else {
- questionList.push(question);
- }
- questionWrapper.questionList = questionList;
- });
- },
- reOrderOptions(question, order) {
- question.order = order; //设置序号
- var questionScore = this.examQuestionList[order - 1].questionScore;
- var studentAnswer = this.examQuestionList[order - 1].studentAnswer;
- var correctAnswer = question.rightAnswer; //从题中获取正确答案
- var optionList = question.questionOptionList;
- //单选,多选
- if (optionList && optionList.length > 0) {
- var correctAnswerInExamQuestion = this.examQuestionList[order - 1]
- .correctAnswer;
- //如果是字母,说明是旧数据
- var reg = /^[a-zA-Z]+$/; //匹配任意字母
- if (
- correctAnswerInExamQuestion &&
- reg.test(correctAnswerInExamQuestion)
- ) {
- question.studentAnswer = studentAnswer;
- question.correctAnswer = correctAnswerInExamQuestion;
- for (var i1 = 0; i1 < optionList.length; i1++) {
- var letter1 = String.fromCharCode(i1 + 65);
- optionList[i1].letter = letter1;
- }
- question.quesOptions = optionList; //选项
- } else {
- var optionPermutation = this.examQuestionList[order - 1]
- .optionPermutation;
- for (var i2 = 0; i2 < optionList.length; i2++) {
- optionList[i2].optionId = i2;
- }
- //按照optionPermutation排序
- var newOptionList = [];
- for (var i3 = 0; i3 < optionPermutation.length; i3++) {
- var optionId = optionPermutation[i3];
- for (var i4 = 0; i4 < optionList.length; i4++) {
- if (optionList[i4].optionId == optionId) {
- newOptionList.push(optionList[i4]);
- break;
- }
- }
- }
- var newCorrectAnswer = []; //正确答案
- var newStudentAnswer = []; //考生作答
- for (var i5 = 0; i5 < newOptionList.length; i5++) {
- var letter = String.fromCharCode(i5 + 65);
- newOptionList[i5].letter = letter;
- if (
- correctAnswer &&
- correctAnswer.indexOf(newOptionList[i5].optionId.toString()) > -1
- ) {
- newCorrectAnswer.push(letter);
- }
- if (
- studentAnswer &&
- studentAnswer.indexOf(newOptionList[i5].optionId.toString()) > -1
- ) {
- newStudentAnswer.push(letter);
- }
- }
- question.quesOptions = newOptionList; //选项
- question.correctAnswer = newCorrectAnswer;
- question.studentAnswer = newStudentAnswer;
- }
- } else {
- question.studentAnswer = studentAnswer;
- question.correctAnswer = correctAnswer;
- if (question.questionType == "TRUE_OR_FALSE") {
- if (studentAnswer == "true") {
- question.studentAnswer = "正确";
- } else if (studentAnswer == "false") {
- question.studentAnswer = "错误";
- }
- if (correctAnswer == "true") {
- question.correctAnswer = "正确";
- } else if (correctAnswer == "false") {
- question.correctAnswer = "错误";
- }
- }
- }
- question.questionScore = questionScore;
- if (question.studentAnswer) {
- question.studentAnswer = question.studentAnswer.toString();
- }
- if (question.correctAnswer) {
- question.correctAnswer = question.correctAnswer.toString();
- }
- if (
- question.questionType == "SINGLE_CHOICE" ||
- question.questionType == "MULTIPLE_CHOICE" ||
- question.questionType == "TRUE_OR_FALSE"
- ) {
- question.isObjectiveQuestion = true;
- }
- if (
- question.studentAnswer &&
- question.correctAnswer &&
- question.studentAnswer == question.correctAnswer
- ) {
- question.isRight = true;
- } else {
- question.isRight = false;
- }
- this.$forceUpdate(); //刷新视图
- },
- toChineseNumber(num) {
- return num.toLocaleString("zh-u-nu-hanidec");
- },
- restoreAudio(str) {
- return (str || "")
- .replace(/<a/g, "<audio controls ")
- .replace(/url=/g, "src=")
- .replace(/a>/g, "audio>");
- }
- },
- created() {
- this.courseId = this.$route.params.courseId;
- this.examRecordDataId = this.$route.params.examRecordDataId;
- this.getExamRecordData();
- this.getCourseInfo();
- this.getPaperData();
- }
- };
- </script>
- <style scoped>
- #paperView {
- background-color: white;
- }
- #paperName {
- text-align: center;
- font-size: 32px;
- font-weight: bold;
- }
- #studentInfoDiv {
- text-align: center;
- margin: 20px 60px;
- }
- #studentInfoTable {
- width: 100%;
- height: 70px;
- border-collapse: collapse;
- }
- .mainQuestionDiv {
- font-size: 14px;
- margin: 20px 60px;
- border-bottom: 1px dashed black;
- }
- .el-icon-check {
- color: green;
- font-size: 16px;
- font-weight: bold;
- }
- .el-icon-close {
- color: red;
- font-size: 16px;
- font-weight: bold;
- }
- </style>
|