|
@@ -54,11 +54,11 @@
|
|
|
<!-- 多选题 -->
|
|
|
<i-cell wx:if="{{item.type==3}}">
|
|
|
<view >
|
|
|
- <text> {{index+1}}. [多]{{item.title}} </text>
|
|
|
+ <rich-text nodes="{{index+1}}.[多]{{item.title}}" />
|
|
|
<checkbox-group class="checkbox-answer" style="margin-top:30rpx" bindchange="checkboxChange" data-index="{{index}}">
|
|
|
<label class="checkbox" wx:for="{{preList}}" wx:for-item="answer" wx:if="{{item['answer'+(index+1)]}}">
|
|
|
<view class="checkbox-answer">
|
|
|
- <checkbox color="#2d8cf0" value="{{index+1}}">
|
|
|
+ <checkbox color="#2d8cf0" value="{{index+1}}" disabled="{{!!item._select}}">
|
|
|
{{answer}}. {{item['answer'+(index+1)]}}
|
|
|
</checkbox>
|
|
|
</view>
|
|
@@ -68,7 +68,7 @@
|
|
|
|
|
|
</view>
|
|
|
|
|
|
- <view class="exam-clear mt20" wx:if="{{isFinish}}">
|
|
|
+ <view class="exam-clear mt20" wx:if="{{isFinish || item._select}}">
|
|
|
<view class="exam-extend-item" >
|
|
|
答题结果:
|
|
|
<text class="question-answer-right question-answer-result"
|