C端小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
1.3 KiB

  1. <view class='head'>
  2. <text>当前</text>
  3. <text>{{score}}</text>
  4. <view class='rule' bindtap='gotorule'>规则</view>
  5. <image class='bg' src='{{bgg}}' 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 wx:if="{{item.scoreType==1}}">每日登录</text>
  12. <text wx:if="{{item.scoreType==2}}">消费</text>
  13. <text wx:if="{{item.scoreType==3}}">绑车牌</text>
  14. <text wx:if="{{item.scoreType==4}}">连接WIFI</text>
  15. <text wx:if="{{item.scoreType==5}}">微信用户昵称授权</text>
  16. <text wx:if="{{item.scoreType==6}}">微信用户手机授权</text>
  17. <text wx:if="{{item.scoreType==7}}">完善个人信息</text>
  18. <text wx:if="{{item.scoreType==8}}">会员导入</text>
  19. <text wx:if="{{item.scoreType==9}}">{{item.reason}}</text>
  20. <text>{{item.createDate}}</text>
  21. </view>
  22. <view class='fr'>
  23. <text wx:if="{{item.scoreAmount>0&&item.scoreType==8}}">重置为{{item.scoreAmount}}分</text>
  24. <text wx:if="{{item.scoreAmount>0&&item.scoreType!=8}}">+{{item.scoreAmount}}分</text>
  25. <text wx:if="{{0>=item.scoreAmount}}">{{item.scoreAmount}}分</text>
  26. </view>
  27. </view>
  28. </view>