| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!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>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb">
- <i class="Hui-iconfont"></i>
- 首页 <span 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="@{/waitToDo/list}" th:method="get">
- <div class="page-container">
- <div class="text-c">
- <input type="text" class="input-text" style="width:250px" placeholder="请输入标题" name="title" th:value="${searchCondition.title}"/>
- <button type="submit" class="btn btn-primary">
- 搜索
- </button>
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="r">共有数据:<strong th:text="${pageInfo?.total}">54</strong> 条</span>
- </div>
- <table class="table table-border table-bordered table-hover table-bg">
- <thead>
- <tr class="text-c">
- <th width="30%">待办标题</th>
- <th width="20%">单号</th>
- <th width="20%">时间</th>
- <th width="10%">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model:${pageInfo?.list}" th:object="${model}">
- <td th:text="*{title}"></td>
- <td th:text="*{business_no}"></td>
- <td th:text="*{create_time}"></td>
- <td class="td-manage">
- <a title="处理" style="text-decoration:none" th:onclick="'javascript:open_dialog(\''+*{title}+'\',\''+*{url}+'\',\'1000\',\'700\');'">处理</a>
- </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 type="text/javascript">
- function open_dialog(title, url, w, h) {
- var index = layer_show(title, pagePath+url, w, h);
- //默认全屏
- layer.full(index);
- }
- </script>
- </body>
- </html>
|