|
@@ -6,11 +6,11 @@
|
|
<div class="score">({{examQuestion.questionScore}}分)</div>
|
|
<div class="score">({{examQuestion.questionScore}}分)</div>
|
|
</div>
|
|
</div>
|
|
<div @click="() => answerQuestion('true')" :class="[studentAnswer === 'true' && 'row-selected', 'option']">
|
|
<div @click="() => answerQuestion('true')" :class="[studentAnswer === 'true' && 'row-selected', 'option']">
|
|
- <input type="radio" name="question" value="true" :checked="studentAnswer === 'true'" />
|
|
|
|
|
|
+ <input type="radio" name="question" value="true" :checked="studentAnswer === 'true'" style="margin-top:3px;display:block" />
|
|
<span class="question-options">正确</span>
|
|
<span class="question-options">正确</span>
|
|
</div>
|
|
</div>
|
|
<div @click="() => answerQuestion('false')" :class="[studentAnswer === 'false' && 'row-selected', 'option']">
|
|
<div @click="() => answerQuestion('false')" :class="[studentAnswer === 'false' && 'row-selected', 'option']">
|
|
- <input type="radio" name="question" value="false" :checked="studentAnswer === 'false'" />
|
|
|
|
|
|
+ <input type="radio" name="question" value="false" :checked="studentAnswer === 'false'" style="margin-top:3px;display:block" />
|
|
<span class="question-options">错误</span>
|
|
<span class="question-options">错误</span>
|
|
</div>
|
|
</div>
|
|
<div class="reset">
|
|
<div class="reset">
|