| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>已推送</title>
- <style>
- .dateform {
- float: left;
- width: 120px;
- }
- .datelabel {
- float: left;
- width: 120px;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb" th:action="@{/government/projectIntelligent/pushed/{id}(id=${id})}" th:method="post">
- <i class="Hui-iconfont"></i>
- 首页
- <span th:unless="${is_label}" class="c-gray en">> 省市申报</span>
- <span th:unless="${is_label}" class="c-gray en">> 已推送</span>
- <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
- href="javascript:location.replace(location.href);" title="刷新">
- <i class="Hui-iconfont"></i>
- </a>
- </nav>
- <form id="myForm" th:action="@{/government/projectIntelligent/pushed/{id}(id=${id})}" th:method="post">
- <div class="page-container">
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">0</strong> 条</span>
- </div>
- <!-- 表格 -->
- <table id="index" class="table table-border table-bordered table-bg table-hover"
- style="table-layout: fixed;width:100%;">
- <thead>
- <tr class="text-c">
- <th style="width:135px;">企业名称</th>
- <th style="width:135px;">推送时间</th>
- <th style="width:100px;">APP消息</th>
- <th style="width:100px;">网站消息</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td th:text="*{company_name}"></td>
- <td th:text="*{create_time}"></td>
- <td>未读</td>
- <td th:if="*{is_read=='0'}">未读</td>
- <td th:if="*{is_read=='1'}">已读</td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|