index.wxml 933 B

123456789101112131415161718192021222324252627282930
  1. <cu-custom isCustom="{{true}}">
  2. <view slot="backText">主页</view>
  3. <view slot="content">账单管理</view>
  4. </cu-custom>
  5. <scroll-view scroll-y class="scrollPage" style="top: {{StatusBar+5}}px;">
  6. <view class="UCenter-bg">
  7. <view class="margin-top-sm flex">
  8. <text>账单年度:{{year}}年</text>
  9. </view>
  10. <view class="margin-top-sm ">
  11. <text class="tl">共计总收入:{{nd.fee/100}}元</text>
  12. </view>
  13. <view class="margin-top-sm ">
  14. <text class="tl">完成任务数: {{nd.count}}笔</text>
  15. </view>
  16. </view>
  17. <view class="cu-list menu shadow-lg radius">
  18. <view class="cu-item arrow" value="{{index}}" wx:for="{{month}}" bindtap="gotoLog"
  19. data-year="{{year}}" data-month="{{index+1}}">
  20. <view class="content">
  21. <text class="text-grey">{{year}}年 {{index+1}}月</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="cu-tabbar-height"></view>
  26. </scroll-view>