|
|
|
@ -61,10 +61,11 @@ |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view v-if="item.question_type <= 3 && item.is_correct && is_analysis" class="analysis"> |
|
|
|
|
<view :class="{ no: item.is_correct === 1 }"> |
|
|
|
|
<view v-if="item.is_correct && is_analysis" class="analysis"> |
|
|
|
|
<view v-if="item.question_type <= 3" :class="{ no: item.is_correct === 1 }"> |
|
|
|
|
回答{{ item.is_correct === 2 ? "正确" : "错误" }} |
|
|
|
|
</view> |
|
|
|
|
<view v-if="item.question_type > 3 && !item.isPay" class="tip">付费阅卷后才可答案解析</view> |
|
|
|
|
<view :class="{'subject-flex': item.question_type > 3}"> |
|
|
|
|
<view> |
|
|
|
|
正确答案: |
|
|
|
@ -83,8 +84,10 @@ |
|
|
|
|
class="iconfont iconxing" |
|
|
|
|
></span> |
|
|
|
|
</view> |
|
|
|
|
<view>答案解析:</view> |
|
|
|
|
<mpHtml container-style="background: #ffffff;" :content="item.analysis"></mpHtml> |
|
|
|
|
<template v-if="item.question_type <= 3 || (item.question_type > 3 && item.isPay)"> |
|
|
|
|
<view>答案解析:</view> |
|
|
|
|
<mpHtml container-style="background: #ffffff;" :content="item.analysis"></mpHtml> |
|
|
|
|
</template> |
|
|
|
|
<view v-if="item.special.length">关联知识点:</view> |
|
|
|
|
<navigator |
|
|
|
|
open-type="redirect" |
|
|
|
@ -96,9 +99,6 @@ |
|
|
|
|
>{{ special.title }}</navigator |
|
|
|
|
> |
|
|
|
|
</view> |
|
|
|
|
<view v-if="item.question_type > 3 && item.is_correct && is_analysis" class="analysis"> |
|
|
|
|
<view>付费阅卷后才可参考答案</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="pl_per"></view> |
|
|
|
|
</view> |
|
|
|
|
<view class="swiper-pagination abs"> |
|
|
|
@ -615,6 +615,11 @@ page { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.analysis { |
|
|
|
|
.tip { |
|
|
|
|
background: none!important; |
|
|
|
|
padding-left: 0!important; |
|
|
|
|
color: #333!important; |
|
|
|
|
} |
|
|
|
|
.subject-flex { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|