| | |
| | | // 查找学生的答卷 |
| | | export const getStudentExam = (examId, userId) => { |
| | | return axios({ |
| | | url: '/api/admin/exam/' + examId + '/' + userId, |
| | | url: '/api/admin/exam/mark/paper/' + examId + '/' + userId, |
| | | method: 'GET' |
| | | }) |
| | | } |
| | |
| | | <el-row> |
| | | <el-col class="info"> |
| | | <span class="exam-info">学员姓名:</span> |
| | | <span class="exam-info">{{ userName }}</span> |
| | | <span class="exam-info">{{ form.userName }}</span> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col class="info"> |
| | | <span class="exam-info">交卷时间:</span> |
| | | <span class="exam-info">{{ examInfo.updateTime }}</span> |
| | | <span class="exam-info">{{ form.updateTime }}</span> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col class="info"> |
| | | <span class="exam-info">完成耗时:</span> |
| | | <span class="exam-info">{{ examInfo.doTime }}</span> |
| | | <span class="exam-info">{{ form.doTime }}</span> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col class="info"> |
| | | <span class="exam-info">得分:</span> |
| | | <span class="exam-info">{{ 30 + ' / ' + 70 }}</span> |
| | | <span class="exam-info">{{ form.score + ' / ' + form.totalScore }}</span> |
| | | </el-col> |
| | | </el-row> |
| | | <el-divider></el-divider> |
| | | <el-row class="do-exam-title"> |
| | | <el-col :span="24"> |
| | | <span :key="item.itemOrder" v-for="item in answer.answerItems"> |
| | | <el-tag :type="questionDoRightTag(item.doRight)" class="do-exam-title-tag" |
| | | <span :key="item.itemOrder" v-for="item in form.answers"> |
| | | <el-tag :type="questionDoRightTag(item.right)" class="do-exam-title-tag" |
| | | @click="goAnchor('#question-' + item.itemOrder)">{{ item.itemOrder }}</el-tag> |
| | | </span> |
| | | </el-col> |
| | | </el-row> |
| | | <el-divider></el-divider> |
| | | <div style="text-align: center"> |
| | | <el-button type="primary" style="width: 120px;height: 35px" @click="submit">提交批改</el-button> |
| | | <el-button type="primary" style="width: 120px;height: 35px" @click="submit">提交批改</el-button> |
| | | </div> |
| | | </el-card> |
| | | </div> |
| | |
| | | <el-form :model="form" ref="form" v-loading="formLoading" label-width="100px"> |
| | | <el-row :key="index" v-for="(titleItem, index) in form.titleItems"> |
| | | <h3>{{ titleItem.name }}</h3> |
| | | <el-card class="exampaper-item-box" v-if="titleItem.questionItems.length !== 0"> |
| | | <el-card class="exampaper-item-box" v-if="titleItem.questionList.length !== 0"> |
| | | <el-form-item :key="questionItem.itemOrder" :label="questionItem.itemOrder + '.'" |
| | | v-for="questionItem in titleItem.questionItems" class="exam-question-item" |
| | | v-for="questionItem in titleItem.questionList" class="exam-question-item" |
| | | label-width="50px" :id="'question-' + questionItem.itemOrder"> |
| | | <QuestionAnswerShow :qType="questionItem.questionType" :question="questionItem" |
| | | :answer="answer.answerItems[questionItem.itemOrder - 1]"/> |
| | | <MarkPaperShow :qType="questionItem.questionType" :question="questionItem"/> |
| | | </el-form-item> |
| | | </el-card> |
| | | </el-row> |
| | |
| | | |
| | | <script> |
| | | import { getStudentExam } from '@/api/exam' |
| | | import QuestionAnswerShow from '@/views/answer/components/QuestionAnswerShow' |
| | | import examPaperAnswerApi from '@/api/examPaperAnswer' |
| | | import MarkPaperShow from '@/views/exam/exam/components/MarkPaperShow' |
| | | import { mapGetters, mapState } from 'vuex' |
| | | |
| | | export default { |
| | | name: 'MarkPaperDetail', |
| | | components: { QuestionAnswerShow }, |
| | | components: { MarkPaperShow }, |
| | | mounted () { |
| | | this.examInfo.examId = this.$route.query.examId |
| | | this.examInfo.examName = this.$route.query.examName |
| | | this.userId = this.$route.query.userId |
| | | examPaperAnswerApi.read(1).then(re => { |
| | | re = { |
| | | 'code': 1, 'message': '成功', 'data': { |
| | | 'paper': { |
| | | 'id': 30, |
| | | 'paperType': 7, |
| | | 'score': '15', |
| | | 'classes': null, |
| | | 'name': '这是一个测试试卷', |
| | | 'suggestTime': 12, |
| | | 'limitDateTime': null, |
| | | 'titleItems': [{ |
| | | 'name': '单选题', |
| | | 'questionItems': [{ |
| | | 'id': 25, |
| | | 'questionType': 1, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列正确的是', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '红楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '白楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }, { 'prefix': 'C', 'content': '青楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'D', |
| | | 'content': '绿楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': null, |
| | | 'correct': 'A', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 1, |
| | | 'knowledgeIdList': [8, 9] |
| | | }, { |
| | | 'id': 30, |
| | | 'questionType': 1, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列正确的是', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '红楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '白楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }, { 'prefix': 'C', 'content': '青楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'D', |
| | | 'content': '绿楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': null, |
| | | 'correct': 'A', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 2, |
| | | 'knowledgeIdList': [8, 9] |
| | | }] |
| | | }, { |
| | | 'name': '多选题', |
| | | 'questionItems': [{ |
| | | 'id': 26, |
| | | 'questionType': 2, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列正确的是', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '红楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '白楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }, { 'prefix': 'C', 'content': '青楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'D', |
| | | 'content': '绿楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': ['A', 'C'], |
| | | 'correct': 'A,C', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 3, |
| | | 'knowledgeIdList': [8, 9] |
| | | }, { |
| | | 'id': 31, |
| | | 'questionType': 2, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列正确的是', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '红楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '白楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }, { 'prefix': 'C', 'content': '青楼梦', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'D', |
| | | 'content': '绿楼梦', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': ['A', 'C'], |
| | | 'correct': 'A,C', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 4, |
| | | 'knowledgeIdList': [8, 9] |
| | | }] |
| | | }, { |
| | | 'name': '判断题', |
| | | 'questionItems': [{ |
| | | 'id': 27, |
| | | 'questionType': 3, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列说明正确吗', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '正确', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '错误', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': null, |
| | | 'correct': 'A', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 5, |
| | | 'knowledgeIdList': [8, 9] |
| | | }, { |
| | | 'id': 32, |
| | | 'questionType': 3, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些,下列说明正确吗', |
| | | 'gradeLevel': 1, |
| | | 'items': [{ 'prefix': 'A', 'content': '正确', 'score': null, 'itemUuid': null }, { |
| | | 'prefix': 'B', |
| | | 'content': '错误', |
| | | 'score': null, |
| | | 'itemUuid': null |
| | | }], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': null, |
| | | 'correct': 'A', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 6, |
| | | 'knowledgeIdList': [8, 9] |
| | | }] |
| | | }, { |
| | | 'name': '填空题', |
| | | 'questionItems': [{ |
| | | 'id': 2, |
| | | 'questionType': 4, |
| | | 'title': '中华四大名著都有', |
| | | 'gradeLevel': 1, |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correct': null, |
| | | 'correctArray': '红楼梦,白楼梦,青楼梦,绿楼梦', |
| | | 'score': '10', |
| | | 'difficult': 3, |
| | | 'itemOrder': 7, |
| | | 'knowledgeIdList': [8, 9], |
| | | 'items': [ |
| | | { prefix: '1', content: '红楼梦' }, |
| | | { prefix: '2', content: '白楼梦' }, |
| | | { prefix: '3', content: '青楼梦' }, |
| | | { prefix: '4', content: '绿楼梦' } |
| | | ] |
| | | } |
| | | ] |
| | | }, { |
| | | 'name': '语音题', |
| | | 'questionItems': [{ |
| | | 'id': 55, |
| | | 'questionType': 1, |
| | | 'title': '听音频回答出小明今天吃的什么', |
| | | 'items': [ |
| | | { 'prefix': 'A', 'content': '番茄', 'score': null, 'itemUuid': null }, |
| | | { 'prefix': 'B', 'content': '白菜', 'score': null, 'itemUuid': null }, |
| | | { 'prefix': 'C', 'content': '香蕉', 'score': null, 'itemUuid': null }, |
| | | { 'prefix': 'D', 'content': '菠萝', 'score': null, 'itemUuid': null } |
| | | ], |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correctArray': null, |
| | | 'correct': 'A', |
| | | 'score': '2.5', |
| | | 'difficult': 3, |
| | | 'itemOrder': 8, |
| | | 'knowledgeIdList': [8, 9] |
| | | }] |
| | | }, { |
| | | 'name': '简答题', |
| | | 'questionItems': [{ |
| | | 'id': 1, |
| | | 'questionType': 5, |
| | | 'subjectId': 4, |
| | | 'title': '中华四大名著都有哪些', |
| | | 'gradeLevel': 1, |
| | | 'analyze': '题目比较简单,自行分析', |
| | | 'correct': '红楼梦、西游记、水浒传、三国演义', |
| | | 'score': '10', |
| | | 'difficult': 3, |
| | | 'itemOrder': 9, |
| | | 'knowledgeIdList': [8, 9] |
| | | } |
| | | ] |
| | | }], |
| | | }, |
| | | 'answer': { |
| | | 'id': 9, |
| | | 'doTime': 26, |
| | | 'score': '100', |
| | | 'createUser': null, |
| | | 'answerItems': [{ |
| | | 'id': 25, |
| | | 'questionId': 25, |
| | | 'doRight': true, |
| | | 'content': 'A', |
| | | 'itemOrder': 1, |
| | | 'contentArray': null, |
| | | 'score': '2.5', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 26, |
| | | 'questionId': 30, |
| | | 'doRight': false, |
| | | 'content': 'C', |
| | | 'itemOrder': 2, |
| | | 'contentArray': null, |
| | | 'score': '0', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 27, |
| | | 'questionId': 26, |
| | | 'doRight': false, |
| | | 'content': '', |
| | | 'itemOrder': 3, |
| | | 'contentArray': [''], |
| | | 'score': '0', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 28, |
| | | 'questionId': 31, |
| | | 'doRight': false, |
| | | 'content': 'C,D', |
| | | 'itemOrder': 4, |
| | | 'contentArray': ['C', 'D'], |
| | | 'score': '0', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 29, |
| | | 'questionId': 27, |
| | | 'doRight': true, |
| | | 'content': 'A', |
| | | 'itemOrder': 5, |
| | | 'contentArray': null, |
| | | 'score': '2.5', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 30, |
| | | 'questionId': 32, |
| | | 'doRight': true, |
| | | 'content': 'A', |
| | | 'itemOrder': 6, |
| | | 'contentArray': null, |
| | | 'score': '2.5', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 33, |
| | | 'questionId': 2, |
| | | 'doRight': null, |
| | | 'content': 'A', |
| | | 'itemOrder': 7, |
| | | 'contentArray': ['红门梦', '三国演绎', '水壶转'], |
| | | 'score': '2.5', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 25, |
| | | 'questionId': 55, |
| | | 'doRight': true, |
| | | 'content': 'A', |
| | | 'itemOrder': 8, |
| | | 'contentArray': null, |
| | | 'score': '2.5', |
| | | 'questionScore': '2.5' |
| | | }, { |
| | | 'id': 31, |
| | | 'questionId': 1, |
| | | 'doRight': null, |
| | | 'content': '红楼梦.......', |
| | | 'itemOrder': 9, |
| | | 'questionScore': '10' |
| | | }], |
| | | 'doTimeStr': '26秒' |
| | | } |
| | | } |
| | | } |
| | | this.form = re.data.paper |
| | | this.answer = re.data.answer |
| | | getStudentExam(this.$route.query.examId, this.$route.query.userId).then(re => { |
| | | this.form = re.data.data |
| | | this.formLoading = false |
| | | }) |
| | | // if (this.examInfo.examId && this.userId) { |
| | | // this.getStudentPaper() |
| | | // } |
| | | }, |
| | | data () { |
| | | return { |
| | | paperQuestionList: [], |
| | | form: {}, |
| | | formLoading: false, |
| | | answer: { |
| | | id: null, |
| | | score: 0, |
| | | doTime: 0, |
| | | answerItems: [], |
| | | doRight: false |
| | | }, |
| | | userId: null, |
| | | userName: '张三', |
| | | questionLoading: false, |
| | | examInfo: { |
| | | examId: null, |
| | | examName: '', |
| | | doTime: '119分40秒', |
| | | updateTime: '2024-06-20 15:59:40', |
| | | paperQuestionList: [] |
| | | } |
| | | } |
| | | }, |
| | | methods: { |
New file |
| | |
| | | <template> |
| | | <div v-loading="qLoading" style="line-height:1.8"> |
| | | <div |
| | | v-if="qType == 1 || qType == 2 || qType == 3 || qType == 4 || qType == 5 || qType == 6 || qType == 7 || qType == 8"> |
| | | <!-- 选择或语音 --> |
| | | <div v-if="qType == 1 || qType == 6"> |
| | | <div class="q-title" v-html="question.title"/> |
| | | <div class="q-content"> |
| | | <el-radio-group v-model="question.answer"> |
| | | <el-radio v-for="item in question.questionItemList" :key="item.prefix" :label="item.prefix"> |
| | | <span class="question-prefix">{{ item.prefix }}.</span> |
| | | <span v-html="item.content" class="q-item-span-content"></span> |
| | | </el-radio> |
| | | </el-radio-group> |
| | | </div> |
| | | </div> |
| | | <!-- 多选 --> |
| | | <div v-else-if="qType == 2"> |
| | | <div class="q-title" v-html="question.title"/> |
| | | <div class="q-content"> |
| | | <el-checkbox-group v-model="question.answerList"> |
| | | <el-checkbox v-for="item in question.questionItemList" :label="item.prefix" :key="item.prefix"> |
| | | <span class="question-prefix">{{ item.prefix }}.</span> |
| | | <span v-html="item.content" class="q-item-span-content"></span> |
| | | </el-checkbox> |
| | | </el-checkbox-group> |
| | | </div> |
| | | </div> |
| | | <!-- 判断 --> |
| | | <div v-else-if="qType == 3"> |
| | | <div class="q-title" v-html="question.title" style="display: inline;margin-right: 10px"/> |
| | | <span style="padding-right: 10px;">(</span> |
| | | <el-radio-group v-model="question.answer"> |
| | | <el-radio v-for="item in question.questionItemList" :key="item.prefix" :label="item.prefix"> |
| | | <span v-html="item.content" class="q-item-span-content"></span> |
| | | </el-radio> |
| | | </el-radio-group> |
| | | <span style="padding-left: 10px;">)</span> |
| | | </div> |
| | | <!-- 填空 --> |
| | | <div v-else-if="qType == 4"> |
| | | <div class="q-title" v-html="question.title"/> |
| | | <div v-if="question.answerList !== null"> |
| | | <el-form-item :label="item.prefix" :key="item.prefix" v-for="item in question.questionItemList" label-width="50px" |
| | | style="margin-top: 10px;margin-bottom: 10px;"> |
| | | <el-input v-model="question.answerList[item.prefix - 1]"/> |
| | | </el-form-item> |
| | | </div> |
| | | </div> |
| | | <!-- 简答、计算、分析 --> |
| | | <div v-else-if="qType == 5 || qType == 7 || qType == 8"> |
| | | <div class="q-title" v-html="question.title"/> |
| | | <div> |
| | | <el-input v-model="question.answer" type="textarea" rows="5"></el-input> |
| | | </div> |
| | | </div> |
| | | <div class="question-answer-show-item" style="margin-top: 15px"> |
| | | <span class="question-show-item">结果:</span> |
| | | <el-tag :type="rightTagFormatter(question.right)"> |
| | | {{ rightTextFormatter(question.right) }} |
| | | </el-tag> |
| | | </div> |
| | | <div class="question-answer-show-item"> |
| | | <span class="question-show-item">总分:</span> |
| | | <span>{{ question.questionScore }}</span> |
| | | </div> |
| | | <div class="question-answer-show-item"> |
| | | <span class="question-show-item">得分:</span> |
| | | <span>{{ question.score }}</span> |
| | | </div> |
| | | <div class="question-answer-show-item"> |
| | | <span class="question-show-item">难度:</span> |
| | | <el-rate disabled v-model="question.difficult" class="question-show-item"></el-rate> |
| | | </div> |
| | | <br/> |
| | | <div class="question-answer-show-item" style="line-height: 1.8"> |
| | | <span class="question-show-item">解析:</span> |
| | | <span v-html="question.analyze" class="q-item-span-content"/> |
| | | </div> |
| | | <div class="question-answer-show-item"> |
| | | <span class="question-show-item">正确答案:</span> |
| | | <!-- 选择、多选、简答、语音、计算、分析 --> |
| | | <span v-if="qType == 1 || qType == 2 || qType == 5 || qType == 6 || qType == 7 || qType == 8" |
| | | v-html="question.qustionAnswer" class="q-item-span-content"/> |
| | | <!-- 判断 --> |
| | | <span v-if="qType == 3" v-html="trueFalseFormatter(question)" class="q-item-span-content"/> |
| | | <!-- 填空 --> |
| | | <span v-if="qType == 4">{{ question.qustionAnswer }}</span> |
| | | </div> |
| | | <div v-if="question.right == null"> |
| | | <span style="color:#ECAB3C;">{{ '批改:' }}</span> |
| | | <el-input-number size="mini" v-model="question.score" :precision="1" :min="0" |
| | | :max="parseInt(question.questionScore)"></el-input-number> |
| | | </div> |
| | | </div> |
| | | <div v-else> |
| | | </div> |
| | | </div> |
| | | |
| | | </template> |
| | | |
| | | <script> |
| | | import { mapState, mapGetters } from 'vuex' |
| | | |
| | | export default { |
| | | name: 'QuestionShow', |
| | | props: { |
| | | question: { |
| | | type: Object, |
| | | default: function () { |
| | | return {} |
| | | } |
| | | }, |
| | | answer: { |
| | | type: Object, |
| | | default: function () { |
| | | return { id: null, content: '', contentArray: [], right: false } |
| | | } |
| | | }, |
| | | qLoading: { |
| | | type: Boolean, |
| | | default: false |
| | | }, |
| | | qType: { |
| | | type: Number, |
| | | default: 0 |
| | | } |
| | | }, |
| | | methods: { |
| | | trueFalseFormatter (question) { |
| | | return question.items.filter(d => d.prefix === question.questionAnswer)[0].content |
| | | }, |
| | | rightTagFormatter (status) { |
| | | return this.enumFormat(this.rightTag, status) |
| | | }, |
| | | rightTextFormatter (status) { |
| | | return this.enumFormat(this.rightEnum, status) |
| | | } |
| | | }, |
| | | computed: { |
| | | ...mapGetters('enumItem', ['enumFormat']), |
| | | ...mapState('enumItem', { |
| | | rightEnum: state => state.exam.question.answer.doRightEnum, |
| | | rightTag: state => state.exam.question.answer.doRightTag |
| | | }) |
| | | } |
| | | } |
| | | </script> |