123456789101112131415161718192021222324252627282930 |
- <cu-custom isCustom="{{true}}">
- <view slot="backText">主页</view>
- <view slot="content">账单管理</view>
- </cu-custom>
- <scroll-view scroll-y class="scrollPage" style="top: {{StatusBar+5}}px;">
- <view class="UCenter-bg">
- <view class="margin-top-sm flex">
- <text>账单年度:{{year}}年</text>
- </view>
- <view class="margin-top-sm ">
- <text class="tl">共计总收入:{{nd.fee/100}}元</text>
- </view>
- <view class="margin-top-sm ">
- <text class="tl">完成任务数: {{nd.count}}笔</text>
- </view>
- </view>
- <view class="cu-list menu shadow-lg radius">
- <view class="cu-item arrow" value="{{index}}" wx:for="{{month}}" bindtap="gotoLog"
- data-year="{{year}}" data-month="{{index+1}}">
- <view class="content">
- <text class="text-grey">{{year}}年 {{index+1}}月</text>
- </view>
- </view>
- </view>
- <view class="cu-tabbar-height"></view>
- </scroll-view>
|