index.wxml 749 B

123456789101112131415161718192021222324
  1. <view class="medalStore">
  2. <view class="header">
  3. <view class="left">
  4. <view class="title">我的勋章</view>
  5. <view class="tips">累计已获得勋章5个</view>
  6. <view class="tips">朗读配音可获得以下勋章哦,其他勋章敬请期待~</view>
  7. </view>
  8. <view class="right">
  9. 5
  10. </view>
  11. </view>
  12. <view class="body">
  13. <view class="medalsBox" wx:for="{{4}}" wx:key="index">
  14. <view class="title">签到勋章</view>
  15. <view class="medalList">
  16. <view class="medal" wx:for="{{5}}" wx:key="index">
  17. <image src="/static/01.png" class="medalImg" />
  18. <view class="name">首次签到</view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <Media id="media"/>
  24. </view>