You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <image class='img' src='./../../static/images/bg.png' mode='widthFix'></image>
- <view class='head'>
- <image src='./../../static/images/reviveimg.png' mode='widthFix'></image>
- <view class='time'>
- <view>
- <text>开始日期</text>
- <picker mode="date" value="{{date}}" start="1970-01-01" end="{{endDate}}" bindchange="bindDateChange">
- <view class="picker">
- {{date}}
- </view>
- </picker>
- </view>
- <view>
- <text></text>
- <text>至</text>
- </view>
- <view>
- <text>结束日期</text>
- <picker mode="date" value="{{date2}}" start="1970-01-01" end="{{endDate}}" bindchange="bindDateChange2">
- <view class="picker">
- {{date2}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <button class='btn' hover-class='active' bindtap='search'>查询</button>
- <view class="contents">
- <view tt:for="{{list}}" tt:key="{{index}}">
- <view class='date-t'>{{item.dateR}}</view>
- <view class='content clearfix' tt:for="{{item.value}}" tt:for-item="item01" tt:key="{{index01}}">
- <view class='le'>
- <text>{{item01.name}}</text>
- <text>{{item01.createDate01}}</text>
- </view>
- <view class='fr'>
- <text>{{item01.creditNum>0?('+'+item01.creditNum):(item01.creditNum)}}</text>
- <text>{{'操作人:'+item01.operator}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="loading" tt:if="{{loading}}">
- {{content}}
- </view>
- <view class='nocontent' tt:if="{{showNocontent}}">
- 暂无数据
- </view>
|