|
|
@@ -68,17 +68,17 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 结果、分数、难度、解析、正确答案 -->
|
|
|
- <div class="question-answer-show-item" style="margin-top: 15px">
|
|
|
+ <div class="question-answer-show-item" style="margin-top: 15px" v-if="paperType!=5">
|
|
|
<span class="question-show-item">结果:</span>
|
|
|
<a-tag :color="doRightTagFormatter(answer.doRight)">
|
|
|
{{ doRightTextFormatter(answer.doRight) }}
|
|
|
</a-tag>
|
|
|
</div>
|
|
|
- <div class="question-answer-show-item">
|
|
|
+ <div class="question-answer-show-item" v-if="paperType!=5">
|
|
|
<span class="question-show-item">分数:</span>
|
|
|
<span>{{ question.score }}</span>
|
|
|
</div>
|
|
|
- <div class="question-answer-show-item">
|
|
|
+ <div class="question-answer-show-item" v-if="paperType!=5">
|
|
|
<span class="question-show-item">难度:</span>
|
|
|
<a-rate :value="question.difficult" disabled class="question-show-item" />
|
|
|
</div>
|
|
|
@@ -120,10 +120,14 @@
|
|
|
qType: {
|
|
|
type: Number,
|
|
|
default: 0
|
|
|
+ },
|
|
|
+ paperType:{
|
|
|
+ type:String,
|
|
|
+ default:''
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- const { question, answer, qLoading, qType } = toRefs(props)
|
|
|
+ const { question, answer, qLoading, qType, paperType } = toRefs(props)
|
|
|
const examStore = useExamStore()
|
|
|
|
|
|
const doRightEnum = computed(() => examStore.exam.question.answer.doRightEnum)
|