| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <html xmlns:th="http://www.thymeleaf.org">
- <head>
- <title>私塾家</title>
- <script th:include="sys/common/metaCSS" th:remove="tag"></script>
- <script th:include="sys/common/metaJS" th:remove="tag"></script>
- <script src="sys/js/My97DatePicker/WdatePicker.js" th:src="@{/static/sys/js/My97DatePicker/WdatePicker.js}"></script>
- </head>
- <style>
- .tablelink{margin-right:10px;}
- .stylecss{
- color: red;
- }
- .select_width{
- width: 220px;
- }
- .date_width{
- width: 150px;
- }
- </style>
- <body>
- <div class="place">
- <span>位置:</span>
- <ul class="placeul">
- <li><a th:href="@{/sys/imuser/school/list}">导入老师/学生</a></li>
- <li><a href="#">学生添加失败列表</a></li>
- </ul>
- </div>
- <div class="rightinfo">
- <table class="tablelist">
- <thead>
- <tr>
- <th>机构</th>
- <th>年级</th>
- <th>班级</th>
- <th>学生姓名</th>
- <th>家长姓名</th>
- <th>家长角色</th>
- <th>家长电话</th>
- <th>失败原因</th>
- </tr>
- </thead>
- <tbody>
- <tr th:each="item:${list}" >
- <td th:text="${item.school}"></td>
- <td th:text="${item.grade}"></td>
- <td th:text="${item.class_name}"></td>
- <td th:text="${item.student_name}"></td>
- <td th:text="${item.parent_name}"></td>
- <td th:text="${item.parent_role}"></td>
- <td th:text="${item.parent_phone}"></td>
- <td th:text="${item.error_reason}"></td>
- </tr>
- </tbody>
- </table>
- <!-- 分页 -->
- <div class="pagin">
- <div class="message">共<i class="blue">[[${page.rowCnt}]]</i>条记录,当前显示第 <i class="blue">[[${page.pageNo }]] </i>页</div>
- <div th:utext='${listNavigatHtml}' th:remove="tag" ></div>
- </div>
- </div>
- </body>
- <script type="text/javascript">
-
- </script>
- </html>
|