|
@@ -17,19 +17,19 @@
|
|
|
|
|
|
<div v-show="question && examQuestion && examQuestion.getQuestionContent" class="question-view" :key="examQuestion.order">
|
|
<div v-show="question && examQuestion && examQuestion.getQuestionContent" class="question-view" :key="examQuestion.order">
|
|
<div style="margin-bottom: -45px;">{{examQuestion.groupOrder}}、</div>
|
|
<div style="margin-bottom: -45px;">{{examQuestion.groupOrder}}、</div>
|
|
- <template v-if="question && question.questionType === 'SINGLE_CHOICE'">
|
|
|
|
|
|
+ <template v-if="question && examQuestion.questionType === 'SINGLE_CHOICE'">
|
|
<single-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
<single-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
</template>
|
|
</template>
|
|
- <template v-if="question && question.questionType === 'MULTIPLE_CHOICE'">
|
|
|
|
|
|
+ <template v-if="question && examQuestion.questionType === 'MULTIPLE_CHOICE'">
|
|
<multiple-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
<multiple-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
</template>
|
|
</template>
|
|
- <template v-if="question && question.questionType === 'TRUE_OR_FALSE'">
|
|
|
|
|
|
+ <template v-if="question && examQuestion.questionType === 'TRUE_OR_FALSE'">
|
|
<boolean-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
<boolean-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
</template>
|
|
</template>
|
|
- <template v-if="question && question.questionType === 'FILL_UP'">
|
|
|
|
|
|
+ <template v-if="question && examQuestion.questionType === 'FILL_UP'">
|
|
<fill-blank-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
<fill-blank-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
</template>
|
|
</template>
|
|
- <template v-if="question && question.questionType === 'ESSAY'">
|
|
|
|
|
|
+ <template v-if="question && examQuestion.questionType === 'ESSAY'">
|
|
<text-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
<text-question-view :question="question" :examQuestion="examQuestion" :key="examQuestion.order" />
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|