1234567891011121314151617181920212223242526272829303132333435 |
- <view>
- <view class="head flex-box flex-center-center">
- <view class="flex-1">
- <view>{{month_total}}</view>
- <view>支出</view>
- </view>
- <view class="flex-1">
- <view>{{total}}</view>
- <view>收入</view>
- </view>
- </view>
- <view class="headed margin-bottom">
- <view class="top">
- <view class="dates" style="padding:10rpx 0" catchTap="openDate">
- <image mode="scaleToFill" src="../../../image/date.png"/>
- <text style="font-size:32rpx;position: relative;" class="{{showDate? 'activeView':''}}">{{date}}</text>
- </view>
- </view>
- </view>
- <view class="main margin-bottom">
- <!-- <view class="title" style="padding-bottom:0rpx">本月奖票</view> -->
- <scroll-view class="scroll" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
- <view class="flex-box-ce item" a:for="{{list}}">
- <view class="flex-1">
- <view>本月奖票</view>
- <text style="font-size:28rpx" class="fontColorF">2015-12-23 14:14</text>
- </view>
- <view class="red">
- +100
- </view>
- </view>
- </scroll-view>
- <no-data a:if="{{list.length==0}}"/>
- </view>
- </view>
|