|
@@ -5,16 +5,16 @@
|
|
|
{{ index}}
|
|
{{ index}}
|
|
|
</div>
|
|
</div>
|
|
|
<span class="header_type">
|
|
<span class="header_type">
|
|
|
- 选择题
|
|
|
|
|
|
|
+ {{question.questionType}}
|
|
|
</span>
|
|
</span>
|
|
|
<span class="header_difficulty">
|
|
<span class="header_difficulty">
|
|
|
- 容易
|
|
|
|
|
|
|
+ {{question.questionLevel}}
|
|
|
</span>
|
|
</span>
|
|
|
<div class="header_exam_name">
|
|
<div class="header_exam_name">
|
|
|
- 25-26学年高一下学期期末考试 第14题
|
|
|
|
|
|
|
+ {{question.fromPaper}}
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="question_content" v-html="questionContent">
|
|
|
|
|
|
|
+ <div class="question_content" v-html="question.title">
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -26,7 +26,7 @@ export default {
|
|
|
components: {
|
|
components: {
|
|
|
},
|
|
},
|
|
|
props: {
|
|
props: {
|
|
|
- questionData: {
|
|
|
|
|
|
|
+ question: {
|
|
|
type: Object,
|
|
type: Object,
|
|
|
default: () => {
|
|
default: () => {
|
|
|
return {};
|
|
return {};
|
|
@@ -131,6 +131,7 @@ export default {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: auto;
|
|
height: auto;
|
|
|
background: #fff;
|
|
background: #fff;
|
|
|
|
|
+ line-height: 30px;
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|