myGrant.axml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <view>
  2. <view class="head flex-box flex-center-center">
  3. <view class="flex-1">
  4. <view>188</view>
  5. <view>本月奖票</view>
  6. </view>
  7. <view class="flex-1">
  8. <view>122</view>
  9. <view>累计奖票</view>
  10. </view>
  11. </view>
  12. <view class="headed margin-bottom">
  13. <view class="top">
  14. <view class="dates" style="padding:10rpx 0" catchTap="openDate">
  15. <image mode="scaleToFill" src="../../../image/date.png"/>
  16. <text style="font-size:32rpx;position: relative;" class="{{showDate? 'activeView':''}}">{{date}}</text>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="main margin-bottom">
  21. <view class="title" style="padding-bottom:0rpx">本月奖票</view>
  22. <view class="ticket-list__item" a:for="{{list}}">
  23. <view class="flex-box flex-v-ce">
  24. <view class="ticket_left flex-3">加雪种</view>
  25. <view class="ticket_right flex-1">
  26. <view style="font-size: 0.42rem; line-height: 0.6rem;">01-06</view>
  27. <view style="font-size: 0.32rem; line-height: 0.6rem;">2021</view>
  28. </view>
  29. </view>
  30. </view>
  31. <no-data a:if="{{list.length==0}}" content="没有奖票" />
  32. </view>
  33. </view>