- <!-- 查询列表 有结果 -->
- <view class="tabTit box tc bg_f clearfix">
- <view class="flex1{{!tab[index]?' active':''}} fl" tt:for="{{tabTxt}}" tt:key="index" data-index="{{index}}" data-idss="{{item.idss}}" bindtap="filterTab">
- <text tt:if="{{index==0}}" class="{{index==idss?'active3':''}}">{{tabTxt[0].title}}</text>
- <text tt:if="{{index!=0}}" class="{{index==idss?'active3':''}}">{{item.title}}</text>
- <image src="../../assets/images/arrow.png"></image>
- </view>
- </view>
- <!-- 日期 -->
- <view class="tabLayer tc" hidden="{{tab[1]}}">
- <view class="picker_group">
- <picker mode="date" value="{{date}}" end="{{date2}}" fields="day" bindchange="bindDateChange1">
- <view tt:if="{{!date}}" class="picker">开始日期</view>
- <view tt:if="{{date}}" class="picker">{{date}}</view>
- </picker>
- 至
- <picker mode="date" value="{{date2}}" start="{{date}}" fields="day" bindchange="bindDateChange2">
- <view tt:if="{{!date2}}" class="picker">结束日期</view>
- <view tt:if="{{date2}}" class="picker">{{date2}}</view>
- </picker>
- <button class='btns' data-ids="1" hover-class='active1' bindtap='search' data-index='dateindex1'>查询</button>
- </view>
- </view>
- <!-- 类型 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[2]}}">
- <view class='{{type===item.id?"active2":"activeDefault"}}' data-ids="2" data-id="{{item.id}}" tt:for="{{billtypes}}" tt:key="index" data-billTypeValue='{{item.billTypeValue}}' bindtap='search'>
- {{item.name}}
- </view>
- </view>
- <!-- 状态 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[3]}}">
- <view class='{{status===item.id?"active2":"activeDefault"}}' data-ids="3" tt:for="{{statustypes}}" tt:key="index" tt:if="index" data-id="{{item.id}}" bindtap='search' data-status='{{item.status}}'>
- {{item.name}}
- </view>
- </view>
- <!-- 来源 -->
- <view class="tabLayer tc clearfix" hidden="{{tab[4]}}">
- <view class='{{source===item.id?"active2":"activeDefault"}}' data-ids="4" tt:for="{{auditWayOptions}}" tt:key="index" tt:if="index" data-id="{{item.id}}" bindtap='search' data-status='{{item.status}}'>
- {{item.name}}
- </view>
- </view>
- <view class='lists'>
- <view tt:for="{{allBillList}}" tt:key="index">
- <view class='list'>
- <view class='clearfix'>
- <text class='txt1 fl' tt:if="{{item.orderId}}">{{item.orderId}}</text>
- <text class='fr time'>{{item.createDate01}}</text>
- </view>
- <view class='clearfix'>
- <text class='time fl'>{{item.sourceStr+" "+item.typeStr}}</text>
- <text class='fr money'>应收:{{item.subsidyStr}}</text>
- </view>
- <view tt:if="{{item.statusStr&&item.status==0}}" class="status status1">{{item.statusStr}}</view>
- <view tt:if="{{item.statusStr&&item.status!==0}}" class="status status3">{{item.statusStr}}</view>
- </view>
- </view>
- </view>
- <!-- </scroll-view> -->
- <view tt:if="{{allBillList.length!==0}}" class="loading {{allBillList.length==0?'mr':''}}">{{content}}</view>
-
- <!-- 查询列表 无结果 -->
- <view class='recond' tt:if="{{allBillList.length==0}}">暂无数据!</view>
- <view class="bottom">
- <view class="b-left">总计应收</view>
- <view class="b-right">¥{{subsidy}}</view>
- </view>
|