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.

101 lines
3.9 KiB

  1. <view class="search" bindtap='gosearch'>账单高级查询</view>
  2. <view class="title"><image src='../../static/images/icon1.png' mode='widthFix'></image>【催缴】:您有 <text>{{allBillList.length}} </text>条账单被催缴,请尽快处理!</view>
  3. <view class="table">
  4. <view class="tr bg-w">
  5. <view class="th">账单类型</view>
  6. <view class="th">账单周期</view>
  7. <view class="th">应付金额</view>
  8. <view class="th">已付金额</view>
  9. <view class="th">欠费金额</view>
  10. <view class="th">操作</view>
  11. </view>
  12. <block wx:for="{{allBillList}}" wx:key="index">
  13. <view class="tr">
  14. <view class="td">{{item.billTypeName}}</view>
  15. <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view>
  16. <view class="td">{{item.receivePay}}</view>
  17. <view class="td">{{item.pay}}</view>
  18. <view class="td">{{item.owe}}</view>
  19. <view class="td">
  20. <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'>
  21. 查看
  22. </button>
  23. <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'>
  24. 缴费
  25. </button>
  26. </view>
  27. </view>
  28. </block>
  29. </view>
  30. <view class="title"><image src='../../static/images/icon2.png' mode='widthFix'></image>【逾期账单】:您有 <text>{{oweBillList.length}} </text>条逾期账单,请尽快处理!</view>
  31. <view class="table">
  32. <view class="tr bg-w">
  33. <view class="th">账单类型</view>
  34. <view class="th">账单周期</view>
  35. <view class="th">应付金额</view>
  36. <view class="th">已付金额</view>
  37. <view class="th">欠费金额</view>
  38. <view class="th">操作</view>
  39. </view>
  40. <block wx:for="{{oweBillList}}" wx:key="index">
  41. <view class="tr">
  42. <view class="td">{{item.billTypeName}}</view>
  43. <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view>
  44. <view class="td">{{item.receivePay}}</view>
  45. <view class="td">{{item.pay}}</view>
  46. <view class="td">{{item.owe}}</view>
  47. <view class="td">
  48. <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'>
  49. 查看
  50. </button>
  51. <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'>
  52. 缴费
  53. </button>
  54. </view>
  55. </view>
  56. </block>
  57. </view>
  58. <view class="title"><image src='../../static/images/icon3.png' mode='widthFix'></image>【临期账单】:您有 <text>{{nearBillList.length}} </text>条临期缴费账单,请及时处理!</view>
  59. <view class="table">
  60. <view class="tr bg-w">
  61. <view class="th">账单类型</view>
  62. <view class="th">账单周期</view>
  63. <view class="th">应付金额</view>
  64. <view class="th">已付金额</view>
  65. <view class="th">欠费金额</view>
  66. <view class="th">操作</view>
  67. </view>
  68. <block wx:for="{{nearBillList}}" wx:key="index">
  69. <view class="tr">
  70. <view class="td">{{item.billTypeName}}</view>
  71. <view class="td">起:{{item.starttime}} <text>止:{{item.endtime}}</text></view>
  72. <view class="td">{{item.receivePay}}</view>
  73. <view class="td">{{item.pay}}</view>
  74. <view class="td">{{item.owe}}</view>
  75. <view class="td">
  76. <button class='btn' bindtap='gotolook' data-data='{{item}}' data-id='{{item.id}}'>
  77. 查看
  78. </button>
  79. <button class='btn' bindtap='goPay' data-data='{{item}}' data-id='{{item.id}}'>
  80. 缴费
  81. </button>
  82. </view>
  83. </view>
  84. </block>
  85. </view>
  86. <!-- <scroll-view wx:if="{{allBillList.length>0}}" scroll-top="{{scrollTop}}" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="bindDownLoad" bindscroll="scroll"> -->
  87. <!-- </scroll-view> -->
  88. <view class="loading {{allBillList.length==0?'mr':''}}">{{loading}}</view>
  89. <!-- 查询列表 无结果 -->
  90. <!-- <view class='recond' wx:if="{{allBillList.length==0}}">暂无数据!</view> -->