company_fee_list.html 5.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  4. layout:decorate="~{admin/common/common}">
  5. <head>
  6. <title>费用信息</title>
  7. </head>
  8. <body layout:fragment="content">
  9. <nav class="breadcrumb">
  10. <i class="Hui-iconfont">&#xe67f;</i>
  11. 首页
  12. <span class="c-gray en">&gt;</span>费用查询
  13. <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px" href="javascript:location.replace(location.href);" title="刷新" >
  14. <i class="Hui-iconfont">&#xe68f;</i>
  15. </a>
  16. </nav>
  17. <form id="myForm" th:action="@{/build/company/feeList}" th:method="get">
  18. <div class="page-container">
  19. <div class="text-c">
  20. <span class="select-box" style="width:250px">
  21. <select th:id="is_processed" class="select" th:name="status">
  22. <option value="">--全部缴费状态--</option>
  23. <option th:value="已缴费" th:text="已缴费" th:selected="${status}=='已缴费'"></option>
  24. <option th:value="未缴费" th:text="未缴费" th:selected="${status}=='未缴费'"></option>
  25. <option th:value="部分缴费" th:text="部分缴费" th:selected="${status}=='部分缴费'"></option>
  26. </select>
  27. </span>
  28. <span class="select-box" style="width:250px">
  29. <select th:id="is_processed" class="select" th:name="fee_type">
  30. <option value="">--全部费用项--</option>
  31. <option th:value="房租" th:text="房租" th:selected="${fee_type}=='房租'"></option>
  32. <option th:value="水费" th:text="水费" th:selected="${fee_type}=='水费'"></option>
  33. <option th:value="电费" th:text="电费" th:selected="${fee_type}=='电费'"></option>
  34. <option th:value="物业费" th:text="物业费" th:selected="${fee_type}=='物业费'"></option>
  35. <option th:value="停车费" th:text="停车费" th:selected="${fee_type}=='停车费'"></option>
  36. </select>
  37. </span>
  38. <button type="submit" class="btn btn-primary">
  39. 搜索
  40. </button>
  41. </div>
  42. <div class="cl pd-5 bg-1 bk-gray mt-20">
  43. <span class="r">共有数据:<strong th:text="${pageInfo?.total}" id="total">54</strong> 条</span>
  44. </div>
  45. <table id="notifyTb" class="table table-border table-bordered table-bg table-hover">
  46. <thead>
  47. <tr class="text-c">
  48. <th>费用项</th>
  49. <th>费用(元)</th>
  50. <th>应缴费日期</th>
  51. <th>缴款状态</th>
  52. <th>操作</th>
  53. </tr>
  54. </thead>
  55. <tbody>
  56. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  57. <td th:text="*{fee_type}"></td>
  58. <td th:text="*{total_fee}"></td>
  59. <td th:text="*{pay_time}"></td>
  60. <td class="td-status" th:if="*{remind_count}==0">
  61. <span class="label radius" th:unless="*{status}=='已缴费'" th:text="*{status}"></span>
  62. <span class="label radius label-success" th:if="*{status}=='已缴费'" th:text="*{status}"></span>
  63. </td>
  64. <td class="td-status" th:if="*{remind_count}>0">
  65. <span class="label radius label-danger" th:unless="*{status}=='已缴费'" th:text="*{status}"></span>
  66. <span class="label radius label-success" th:if="*{status}=='已缴费'" th:text="*{status}"></span>
  67. </td>
  68. <td class="td-manage">
  69. <a th:if="*{fee_type}=='房租'" title="" href="javascript:;" th:onclick="'javascript:company_dialog( \'详情\',\'/build/tenancy/info/'+*{fee_id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
  70. <a th:if="*{fee_type}=='水费'" title="" href="javascript:;" th:onclick="'javascript:company_dialog( \'详情\',\'/build/electricWater/waterFeeCheck/'+*{fee_id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
  71. <a th:if="*{fee_type}=='电费'" title="" href="javascript:;" th:onclick="'javascript:company_dialog( \'详情\',\'/build/electricWater/electricFeeCheck/'+*{fee_id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
  72. <a th:if="*{fee_type}=='物业费'" title="" href="javascript:;" th:onclick="'javascript:company_dialog( \'详情\',\'/build/contract/propertyEdit/'+*{fee_id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
  73. <a th:if="*{fee_type}=='停车费'" title="" href="javascript:;" th:onclick="'javascript:company_dialog( \'详情\',\'/build/contract/propertyEdit/'+*{fee_id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">详情</a>
  74. </td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. <div th:replace="admin/common/page :: page"></div>
  79. </div>
  80. </form>
  81. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  82. <script type="text/javascript" th:src="@{/js/build/company/company_fee_list.js}"></script>
  83. <script th:inline="javascript">
  84. </script>
  85. </body>
  86. </html>