C端小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

36 Zeilen
1.6 KiB

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