C端小程序
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

18 рядки
553 B

  1. <view class='head'>
  2. <text>当前</text>
  3. <text>{{score}}</text>
  4. <view class='rule' bindtap='gotorule'>规则</view>
  5. <image class='bg' src='./../../../assets/images/bgg.png' mode='widthFix'></image>
  6. </view>
  7. <view class=''>
  8. <text class='title'>成长值明细</text>
  9. <view class='content clearfix' wx:for="{{list}}" wx:key="{{index}}">
  10. <view class='le'>
  11. <text>{{item.scoreAmount}}</text>
  12. <text>{{item.createDate}}</text>
  13. </view>
  14. <view class='fr'>
  15. <text>+{{item.scoreAmount}}分</text>
  16. </view>
  17. </view>
  18. </view>