|
@@ -12,10 +12,12 @@
|
|
|
<div class="content">
|
|
<div class="content">
|
|
|
<div class="right_btn" v-if="errorType !== 1">
|
|
<div class="right_btn" v-if="errorType !== 1">
|
|
|
<el-button size="medium" @click="downloadDialogVisible = true; isVariation = 0">下载错题本</el-button>
|
|
<el-button size="medium" @click="downloadDialogVisible = true; isVariation = 0">下载错题本</el-button>
|
|
|
- <el-button type="primary" size="medium" @click="downloadDialogVisible = true; isVariation = 1">下载个性化提升手册</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" size="medium"
|
|
|
|
|
+ @click="downloadDialogVisible = true; isVariation = 1">下载个性化提升手册</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <Download :visible.sync="downloadDialogVisible" :examId="examId" :subjectCode="subjectCode" :isVariation="isVariation" />
|
|
|
|
|
|
|
+ <Download :visible.sync="downloadDialogVisible" :examId="examId" :subjectCode="subjectCode"
|
|
|
|
|
+ :isVariation="isVariation" />
|
|
|
|
|
|
|
|
<template v-if="questionList.length > 0">
|
|
<template v-if="questionList.length > 0">
|
|
|
<div v-for="(question, index) in questionList" :key="question.questionId">
|
|
<div v-for="(question, index) in questionList" :key="question.questionId">
|
|
@@ -50,7 +52,8 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="footer_item">
|
|
<div class="footer_item">
|
|
|
<span class="gray">难度:</span>
|
|
<span class="gray">难度:</span>
|
|
|
- <span style="font-weight: bold;" :class="countDiffcutyClass(question.difficulty)">{{ question.difficulty }}
|
|
|
|
|
|
|
+ <span style="font-weight: bold;" :class="countDiffcutyClass(question.difficulty)">
|
|
|
|
|
+ {{ question.difficulty }}
|
|
|
</span>
|
|
</span>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -114,7 +117,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex">
|
|
<div class="flex">
|
|
|
- <div class="flex_left">答 案:</div>
|
|
|
|
|
|
|
+ <div class="flex_left">答 案:</div>
|
|
|
<div class="flex_right">
|
|
<div class="flex_right">
|
|
|
<div v-if="question.sourceType === 1" v-html="question.questionData.answer">
|
|
<div v-if="question.sourceType === 1" v-html="question.questionData.answer">
|
|
|
</div>
|
|
</div>
|
|
@@ -125,7 +128,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex">
|
|
<div class="flex">
|
|
|
- <div class="flex_left">解 析:</div>
|
|
|
|
|
|
|
+ <div class="flex_left">解 析:</div>
|
|
|
<div class="flex_right">
|
|
<div class="flex_right">
|
|
|
<div style="line-height: 1.5;" v-show="question.sourceType === 1"
|
|
<div style="line-height: 1.5;" v-show="question.sourceType === 1"
|
|
|
v-html="question.questionData.analysis">
|
|
v-html="question.questionData.analysis">
|
|
@@ -161,12 +164,15 @@
|
|
|
{{ question.variationQuestion.questionType }}
|
|
{{ question.variationQuestion.questionType }}
|
|
|
</span>
|
|
</span>
|
|
|
<span class="gray">难度:</span>
|
|
<span class="gray">难度:</span>
|
|
|
- <span style="font-weight: bold;" :class="countDiffcutyClass(question.variationQuestion.difficulty)">{{
|
|
|
|
|
- question.variationQuestion.difficulty }}</span>
|
|
|
|
|
|
|
+ <span style="font-weight: bold;"
|
|
|
|
|
+ :class="countDiffcutyClass(question.variationQuestion.difficulty)">
|
|
|
|
|
+ {{ question.variationQuestion.difficulty }}
|
|
|
|
|
+ </span>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- <div class="question_content line_height_20" v-html="question.variationQuestion.questionStem">这是题目内容</div>
|
|
|
|
|
|
|
+ <div class="question_content line_height_20"
|
|
|
|
|
+ v-html="question.variationQuestion.questionStem">这是题目内容</div>
|
|
|
|
|
|
|
|
<!-- <div class="yuwen">
|
|
<!-- <div class="yuwen">
|
|
|
<span class="btn_span active">1</span>
|
|
<span class="btn_span active">1</span>
|
|
@@ -256,11 +262,11 @@ export default {
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
- IsVariation(newVal) {
|
|
|
|
|
- if (newVal === 0 || newVal === 1) {
|
|
|
|
|
|
|
+ IsVariation(newVal) {
|
|
|
|
|
+ if (newVal === 0 || newVal === 1) {
|
|
|
this.downloadDialogVisible = true
|
|
this.downloadDialogVisible = true
|
|
|
this.isVariation = newVal
|
|
this.isVariation = newVal
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
|
|
|