C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

34 строки
1.5 KiB

  1. <navbar back home text="成长值"></navbar>
  2. <view class='head' style="padding-top:{{navigationBarHeight}}!important">
  3. <text>当前</text>
  4. <text>{{score}}</text>
  5. <view class='rule' bindtap='gotorule'>规则</view>
  6. <image class='bg' src='{{bgg}}' mode='widthFix'></image>
  7. </view>
  8. <view class=''>
  9. <text class='title'>成长值明细</text>
  10. <view wx:if="{{list.length>0}}">
  11. <view class='content clearfix' wx:for="{{list}}" wx:key="{{index}}">
  12. <view class='le'>
  13. <text wx:if="{{item.scoreType==1}}">每日登录</text>
  14. <text wx:if="{{item.scoreType==2}}">消费</text>
  15. <text wx:if="{{item.scoreType==3}}">绑车牌</text>
  16. <text wx:if="{{item.scoreType==4}}">连接WIFI</text>
  17. <text wx:if="{{item.scoreType==5}}">微信用户昵称授权</text>
  18. <text wx:if="{{item.scoreType==6}}">微信用户手机授权</text>
  19. <text wx:if="{{item.scoreType==7}}">完善个人信息</text>
  20. <text wx:if="{{item.scoreType==8}}">会员导入</text>
  21. <text wx:if="{{item.scoreType==9}}">{{item.reason}}</text>
  22. <text>{{item.createDate}}</text>
  23. </view>
  24. <view class='fr'>
  25. <text wx:if="{{item.scoreAmount>0&&item.scoreType==8}}">重置为{{item.scoreAmount}}分</text>
  26. <text wx:if="{{item.scoreAmount>0&&item.scoreType!=8}}">+{{item.scoreAmount}}分</text>
  27. <text wx:if="{{0>=item.scoreAmount}}">{{item.scoreAmount}}分</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class='nonecontent' wx:if="{{list.length==0}}">
  32. 暂无数据
  33. </view>
  34. </view>