propertyFee.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
  2. <vc:create name="viewMainFee"
  3. feeName="物业费"
  4. feeTypeCd="888800010001"
  5. ></vc:create>
  6. <div class="row">
  7. <div class="col-lg-12">
  8. <div class="ibox">
  9. <div class="ibox-title">
  10. <h5>缴费历史</h5>
  11. </div>
  12. <div class="ibox-content">
  13. <div class="row">
  14. <div class="col-sm-4 m-b-xs">
  15. <input size="16" type="text" placeholder="请选择开始时间" value="" readonly class="start_time">
  16. </div>
  17. <div class="col-sm-3 m-b-xs">
  18. <input size="16" type="text" placeholder="请选择结束时间" value="" readonly class="end_time">
  19. </div>
  20. <div class="col-sm-3">
  21. </div>
  22. <div class="col-sm-2">
  23. <button type="button" class="btn btn-primary btn-sm" v-on:click="queryFeeDetailMethod()">
  24. <i class="glyphicon glyphicon-search"></i> 马上查询</button>
  25. </div>
  26. </div>
  27. <table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px" data-page-size="10">
  28. <thead>
  29. <tr>
  30. <th>缴费ID</th>
  31. <th data-hide="phone">周期</th>
  32. <th data-hide="phone">应收金额</th>
  33. <th data-hide="phone">实收金额</th>
  34. <th data-hide="phone">打折率</th>
  35. <th data-hide="phone" >备注</th>
  36. <th data-hide="phone">缴费时间</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <tr v-for="feeDetail in feeDetailInfo.feeDetails">
  41. <td>
  42. {{feeDetail.detailId}}
  43. </td>
  44. <td>
  45. {{feeDetail.cycles}} 月
  46. </td>
  47. <td>
  48. {{feeDetail.receivableAmount}} 元
  49. </td>
  50. <td>
  51. {{feeDetail.receivedAmount}} 元
  52. </td>
  53. <td>
  54. {{feeDetail.primeRate}}
  55. </td>
  56. <td>
  57. {{feeDetail.remark}}
  58. </td>
  59. <td>
  60. {{feeDetail.createTime}}
  61. </td>
  62. </tr>
  63. </tbody>
  64. <tfoot>
  65. <tr>
  66. <td colspan="7">
  67. <ul class="pagination float-right"></ul>
  68. </td>
  69. </tr>
  70. </tfoot>
  71. </table>
  72. <!-- 分页 -->
  73. <vc:create name="pagination"></vc:create>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>