companyIndex.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. </nav>
  13. <div class="page-container">
  14. <div class="row cl">
  15. <div class="col-xs-10" style="width:48%;">
  16. <table id="todoTb" class="table table-border table-bordered table-bg table-hover">
  17. <thead>
  18. <tr>
  19. <th scope="col" colspan="2">维修跟踪</th>
  20. </tr>
  21. <tr class="text-c">
  22. <th>主题</th>
  23. <th>状态</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr class="text-c" th:each="model:${maintenanceList}" th:object="${model}">
  28. <td th:text="*{question_name}"></td>
  29. <td class="td-status" th:switch="*{is_processed}" >
  30. <span th:case="false" class="label radius" >待处理</span>
  31. <span th:case="true" class="label radius label-success" >已处理</span>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td scope="col" colspan="2" >
  36. <a th:href="@{/build/maintenance/list}" style="float:right;">更多>>></a>
  37. </td>
  38. </tr>
  39. </tbody>
  40. </table>
  41. </div>
  42. <div class="col-xs-10" style="width:48%;">
  43. <table id="tenancyTb" class="table table-border table-bordered table-bg table-hover">
  44. <thead>
  45. <tr>
  46. <th scope="col" colspan="5">缴费提醒</th>
  47. </tr>
  48. <tr class="text-c">
  49. <th>费用项</th>
  50. <th>费用(元)</th>
  51. <th>应缴费日期</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <tr class="text-c" th:each="model:${feeList}" th:object="${model}">
  56. <td th:text="*{fee_type}"></td>
  57. <td th:text="*{total_fee}"></td>
  58. <td th:text="*{pay_time}"></td>
  59. </tr>
  60. <tr>
  61. <td scope="col" colspan="5" ><a th:href="@{/build/company/feeList}" style="float:right;">更多>>></a></td>
  62. </tr>
  63. </tbody>
  64. </table>
  65. </div>
  66. </div>
  67. <div class="row cl">
  68. <div class="col-xs-10" style="width:48%;">
  69. <table id="notifyTb" class="table table-border table-bordered table-bg table-hover">
  70. <thead>
  71. <tr>
  72. <th scope="col" colspan="1">通知公告</th>
  73. </tr>
  74. </thead>
  75. <tbody>
  76. <tr class="text-c" th:each="model:${latestNotifyList}" th:object="${model}">
  77. <td class="text-l">
  78. <div>
  79. <div><a th:href="@{'/government/notify/info/'+*{id}+'/'+*{notify_detail_id}}" th:text="*{title}"></a></div>
  80. <div th:text="*{notify_abstract}"></div>
  81. <div class="text-r" th:text="*{create_time}"></div>
  82. </div>
  83. </td>
  84. </tr>
  85. <tr>
  86. <td scope="col" colspan="1" ><a th:href="@{/government/notify/list}" style="float:right;">更多>>></a></td>
  87. </tr>
  88. </tbody>
  89. </table>
  90. </div>
  91. </div>
  92. </div>
  93. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  94. <script type="text/javascript" th:src="@{/js/build/index/build_index.js}"></script>
  95. <script th:inline="javascript">
  96. </script>
  97. </body>
  98. </html>