feeSummary.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <div id="component" class="wrapper wrapper-content animated fadeInRight ecommerce">
  2. <div class="row">
  3. <div class="col-lg-12">
  4. <div class="ibox">
  5. <div class="ibox-title">
  6. <h5>缴费汇总表</h5>
  7. <div class="ibox-tools" style="top:10px;">
  8. <div class="btn-group" role="group" aria-label="Basic example">
  9. <button type="button"
  10. class="btn btn-light btn-sm"
  11. v-bind:class="{'btn-primary': feeSummaryInfo.feeSummaryType == 1001}"
  12. v-on:click="_switchFeeSummaryType(1001)"
  13. >日</button>
  14. <button type="button"
  15. class="btn btn-light btn-sm"
  16. v-bind:class="{'btn-primary': feeSummaryInfo.feeSummaryType == 1101}"
  17. v-on:click="_switchFeeSummaryType(1101)"
  18. >月</button>
  19. <button type="button"
  20. class="btn btn-light btn-sm"
  21. v-bind:class="{'btn-primary': feeSummaryInfo.feeSummaryType == 1111}"
  22. v-on:click="_switchFeeSummaryType(1111)"
  23. >年</button>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="ibox-content">
  28. <table class="footable table table-stripped toggle-arrow-tiny"
  29. data-page-size="15"
  30. >
  31. <thead>
  32. <tr>
  33. <th class="text-center">时间</th>
  34. <th class="text-center">费用项ID</th>
  35. <th class="text-center">费用项名称</th>
  36. <th class="text-center">应收金额</th>
  37. <th class="text-center">实收金额</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. <tr v-for="fee in feeSummaryInfo.fees">
  42. <td class="text-center">{{fee.createTime}}</td>
  43. <td class="text-center">{{fee.configId}}</td>
  44. <td class="text-center">{{fee.feeName}}</td>
  45. <td class="text-center">{{fee.receivableAmounts}}</td>
  46. <td class="text-center">{{fee.receivedAmounts}}</td>
  47. </tr>
  48. </tbody>
  49. <tfoot>
  50. <tr>
  51. <td colspan="7">
  52. <ul class="pagination float-right"></ul>
  53. </td>
  54. </tr>
  55. </tfoot>
  56. </table>
  57. <!-- 分页 -->
  58. <vc:create name="pagination"></vc:create>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>