|
@@ -31,10 +31,11 @@
|
|
|
<image class="questions" src="{{item.questions.img}}"></image>
|
|
|
<view class="answer {{flag[index] ? 'unfold' : ''}}" animation="{{flag[index]? animationData : ''}}">
|
|
|
<view class="answer-txt">
|
|
|
- <text>你的答案:{{item.userQuestionResult.answer === "" ? '不知道' : item.userQuestionResult.answer}}</text>
|
|
|
+ <text>你的答案:{{item.userQuestionResult.answer === "0" ? '不知道' : item.userQuestionResult.answer}}</text>
|
|
|
<text>{{item.questions.answer == item.userQuestionResult.answer ? "" : "(错误)"}}</text>
|
|
|
</view>
|
|
|
- <view class="analysis" bindtap="particulars" data-flag="{{flag[index]}}" data-index="{{index}}">
|
|
|
+ <!-- 错题点击事件 bindtap="particulars" 没有解析暂时去掉 -->
|
|
|
+ <view class="analysis" data-flag="{{flag[index]}}" data-index="{{index}}">
|
|
|
<image class="analysis-img" src="../image/analysis_bottom.png" wx:if="{{!(flag[index])}}"></image>
|
|
|
<image class="analysis-img-top" src="../image/analysis_top.png" wx:else></image>
|
|
|
</view>
|