| | |
| | | <text class="un-answered explain-color-box"></text> |
| | | <text>未答</text> |
| | | </view> |
| | | <view |
| | | class="error-box" |
| | | wx:if="{{((answerType == 'option' || answerType == 'mock') && submitStatus) || answerType == 'collectQuestion' || answerType == 'errorQuestion'}}" |
| | | > |
| | | <text |
| | | class="explain-color-box" |
| | | style="background-color: #ee1818" |
| | | ></text> |
| | | <text>错误</text> |
| | | </view> |
| | | <view |
| | | class="correct-box" |
| | | wx:if="{{((answerType == 'option' || answerType == 'mock') && submitStatus) || answerType == 'collectQuestion' || answerType == 'errorQuestion'}}" |
| | | > |
| | | <text |
| | | class="explain-color-box" |
| | | style="background-color: #1fbc1f" |
| | | ></text> |
| | | <text>正确</text> |
| | | </view> |
| | | </view> |
| | | <view class="question-card-list"> |
| | | <view wx:for="{{cardList}}" wx:key="index" class="card-box"> |
| | |
| | | wx:for-item="citem" |
| | | wx:for-index="cindex" |
| | | wx:key="cindex" |
| | | class="question-box {{citem.isUserAnswer ? 'answered' : 'un-answered'}}" |
| | | class="question-box {{ citem.isUserAnswer ? 'answered' : 'un-answered' }} {{ ( ((answerType == 'option' || answerType == 'mock') && submitStatus || answerType == 'collectQuestion' || answerType == 'errorQuestion') && citem.questionType !== 'shortAnswer' ) ? citem.isRight ? 'correct-box-color' : 'error-box-color' : ''}} " |
| | | > |
| | | {{citem.number}} |
| | | </view> |