<view class="search" bindtap='gosearch'>账单高级查询</view> <view class="title"><image src='../../static/images/icon1.png' mode='widthFix'></image>【催缴】:您有 <text>{{allBillList.length}} </text>条账单被催缴,请尽快处理!</view> <view class="table"> <view class="tr bg-w"> <view class="th">账单类型</view> <view class="th">账单周期</view> <view class="th">应付金额</view> <view class="th">已付金额</view> <view class="th">欠费金额</view> <view class="th">操作</view> </view> <block wx:for="{{allBillList}}" wx:key="index"> <view class="tr"> <view class="td">{{item.billTypeName}}</view> <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view> <view class="td">{{item.receivePay}}</view> <view class="td">{{item.pay}}</view> <view class="td">{{item.owe}}</view> <view class="td"> <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'> 查看 </button> <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'> 缴费 </button> </view> </view> </block> </view> <view class="title"><image src='../../static/images/icon2.png' mode='widthFix'></image>【逾期账单】:您有 <text>{{oweBillList.length}} </text>条逾期账单,请尽快处理!</view> <view class="table"> <view class="tr bg-w"> <view class="th">账单类型</view> <view class="th">账单周期</view> <view class="th">应付金额</view> <view class="th">已付金额</view> <view class="th">欠费金额</view> <view class="th">操作</view> </view> <block wx:for="{{oweBillList}}" wx:key="index"> <view class="tr"> <view class="td">{{item.billTypeName}}</view> <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view> <view class="td">{{item.receivePay}}</view> <view class="td">{{item.pay}}</view> <view class="td">{{item.owe}}</view> <view class="td"> <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'> 查看 </button> <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'> 缴费 </button> </view> </view> </block> </view> <view class="title"><image src='../../static/images/icon3.png' mode='widthFix'></image>【临期账单】:您有 <text>{{nearBillList.length}} </text>条临期缴费账单,请及时处理!</view> <view class="table"> <view class="tr bg-w"> <view class="th">账单类型</view> <view class="th">账单周期</view> <view class="th">应付金额</view> <view class="th">已付金额</view> <view class="th">欠费金额</view> <view class="th">操作</view> </view> <block wx:for="{{nearBillList}}" wx:key="index"> <view class="tr"> <view class="td">{{item.billTypeName}}</view> <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view> <view class="td">{{item.receivePay}}</view> <view class="td">{{item.pay}}</view> <view class="td">{{item.owe}}</view> <view class="td"> <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'> 查看 </button> <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'> 缴费 </button> </view> </view> </block> </view> <!-- <scroll-view wx:if="{{allBillList.length>0}}" scroll-top="{{scrollTop}}" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="bindDownLoad" bindscroll="scroll"> --> <!-- </scroll-view> --> <view class="loading {{allBillList.length==0?'mr':''}}">{{loading}}</view> <!-- 查询列表 无结果 --> <!-- <view class='recond' wx:if="{{allBillList.length==0}}">暂无数据!</view> -->