pushed.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <style>
  8. .dateform {
  9. float: left;
  10. width: 120px;
  11. }
  12. .datelabel {
  13. float: left;
  14. width: 120px;
  15. }
  16. </style>
  17. </head>
  18. <body layout:fragment="content">
  19. <nav class="breadcrumb" th:action="@{/projectFilling/pushed/{id}(id=${id})}" th:method="post">
  20. <i class="Hui-iconfont">&#xe67f;</i>
  21. 首页
  22. <span th:unless="${is_label}" class="c-gray en">&gt; 省市申报</span>
  23. <span th:unless="${is_label}" class="c-gray en">&gt; 已推送</span>
  24. <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
  25. href="javascript:location.replace(location.href);" title="刷新">
  26. <i class="Hui-iconfont">&#xe68f;</i>
  27. </a>
  28. </nav>
  29. <form id="myForm" th:action="@{/projectFilling/pushed/{id}(id=${id})}" th:method="post">
  30. <div class="page-container">
  31. <div class="cl pd-5 bg-1 bk-gray mt-20">
  32. <span class="l">
  33. </span>
  34. <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">0</strong> 条</span>
  35. </div>
  36. <!-- 表格 -->
  37. <table id="index" class="table table-border table-bordered table-bg table-hover"
  38. style="table-layout: fixed;width:100%;">
  39. <thead>
  40. <tr class="text-c">
  41. <th style="width:135px;">企业名称</th>
  42. <th style="width:135px;">推送时间</th>
  43. <th style="width:100px;">APP消息</th>
  44. <th style="width:100px;">网站消息</th>
  45. </tr>
  46. </thead>
  47. <tbody>
  48. <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
  49. <td th:text="*{company_name}"></td>
  50. <td th:text="*{create_time}"></td>
  51. <td>未读</td>
  52. <td th:if="*{is_read=='0'}">未读</td>
  53. <td th:if="*{is_read=='1'}">已读</td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. <div th:replace="admin/common/page :: page"></div>
  58. </div>
  59. </form>
  60. <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
  61. <script th:inline="javascript">
  62. </script>
  63. </body>
  64. </html>