C端小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

33 rader
1.4 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 wx:if="{{list.length>0}}">
  10. <view class='content clearfix' wx:for="{{list}}" wx:key="{{index}}">
  11. <view class='le'>
  12. <text wx:if="{{item.scoreType==1}}">每日登录</text>
  13. <text wx:if="{{item.scoreType==2}}">消费</text>
  14. <text wx:if="{{item.scoreType==3}}">绑车牌</text>
  15. <text wx:if="{{item.scoreType==4}}">连接WIFI</text>
  16. <text wx:if="{{item.scoreType==5}}">微信用户昵称授权</text>
  17. <text wx:if="{{item.scoreType==6}}">微信用户手机授权</text>
  18. <text wx:if="{{item.scoreType==7}}">完善个人信息</text>
  19. <text wx:if="{{item.scoreType==8}}">会员导入</text>
  20. <text wx:if="{{item.scoreType==9}}">{{item.reason}}</text>
  21. <text>{{item.createDate}}</text>
  22. </view>
  23. <view class='fr'>
  24. <text wx:if="{{item.scoreAmount>0&&item.scoreType==8}}">重置为{{item.scoreAmount}}分</text>
  25. <text wx:if="{{item.scoreAmount>0&&item.scoreType!=8}}">+{{item.scoreAmount}}分</text>
  26. <text wx:if="{{0>=item.scoreAmount}}">{{item.scoreAmount}}分</text>
  27. </view>
  28. </view>
  29. </view>
  30. <view class='nonecontent' wx:if="{{list.length==0}}">
  31. 暂无数据
  32. </view>
  33. </view>