gxdDetail.axml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view>
  2. <view class="head flex-box flex-center-center">
  3. <view class="flex-1">
  4. <view>{{month_total}}</view>
  5. <view>支出</view>
  6. </view>
  7. <view class="flex-1">
  8. <view>{{total}}</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. <scroll-view class="scroll" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
  23. <view class="flex-box-ce item" a:for="{{list}}">
  24. <view class="flex-1">
  25. <view>本月奖票</view>
  26. <text style="font-size:28rpx" class="fontColorF">2015-12-23 14:14</text>
  27. </view>
  28. <view class="red">
  29. +100
  30. </view>
  31. </view>
  32. </scroll-view>
  33. <no-data a:if="{{list.length==0}}"/>
  34. </view>
  35. </view>