quiz.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!-- 顶部红色主题标题 -->
  2. <view class="header">
  3. <image src="/images/red1.JPG" ></image>
  4. <text class="title">红色知识问答</text>
  5. </view>
  6. <!-- 题目卡片 -->
  7. <view class="card">
  8. <view class="question-box">
  9. <text class="category">{{question.category}}</text>
  10. <text class="question-text">{{question.text}}</text>
  11. </view>
  12. <!-- 选项按钮 -->
  13. <view class="options">
  14. <block wx:for="{{options}}" wx:key="index">
  15. <view
  16. class="option {{selectedIndex === index ? 'selected' : ''}}"
  17. bindtap="selectOption"
  18. data-index="{{index}}"
  19. >
  20. <text class="option-key">{{item.key}}</text>
  21. <text class="option-value">{{item.value}}</text>
  22. </view>
  23. </block>
  24. </view>
  25. </view>
  26. <!-- 底部积分和提交 -->
  27. <view class="footer">
  28. <view class="score">
  29. <image src="/images/star.png" class="star"></image>
  30. <text>当前积分: {{score}}</text>
  31. </view>
  32. <button class="submit-btn" bindtap="submitAnswer">提交答案</button>
  33. </view>
  34. <!-- 结果弹窗 -->
  35. <modal wx:if="{{showResult}}" class="result-modal">
  36. <view class="modal-content {{isCorrect ? 'correct' : 'wrong'}}">
  37. <image src="{{isCorrect ? '/images/success.png' : '/images/fail.png'}}"></image>
  38. <text>{{resultText}}</text>
  39. <text class="explanation">答案解析: {{explanation}}</text>
  40. <button bindtap="nextQuestion">下一题</button>
  41. </view>
  42. </modal>