| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "sendmail");%>
- <%pageContext.setAttribute("currentMenu", "sendmail");%>
- <%pageContext.setAttribute("currentTitle", "party-11");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title><spring:message code="dev.sendmail-queue.list.title" text="列表"/></title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- var config = {
- id: 'sendmail-queueGrid',
- pageNo: ${page.pageNo},
- pageSize: ${page.pageSize},
- totalCount: ${page.totalCount},
- resultSize: ${page.resultSize},
- pageCount: ${page.pageCount},
- orderBy: '${page.orderBy == null ? "" : page.orderBy}',
- asc: ${page.asc},
- params: {
- 'filter_LIKES_name': '${param.filter_LIKES_name}'
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'sendmail-queueGridForm',
- exportUrl: 'sendmail-queue-export.do'
- };
- var table;
- $(function() {
- table = new Table(config);
- table.configPagination('.m-pagination');
- table.configPageInfo('.m-page-info');
- table.configPageSize('.m-page-size');
- });
- </script>
- </head>
- <body>
- <%@include file="/header/_pim3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/sendmail.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="glyphicon glyphicon-list"></i>
- 查询
- <div class="pull-right ctrl">
- <a class="btn btn-default btn-xs"><i id="sendmail-queueSearchIcon" class="glyphicon glyphicon-chevron-up"></i></a>
- </div>
- </div>
- <div class="panel-body">
- <form name="sendmail-queueForm" method="post" action="sendmail-queue-list.do" class="form-inline">
- <label for="sendmail-queue_name"><spring:message code='sendmail-queue.sendmail-queue.list.search.name' text='名称'/>:</label>
- <input type="text" id="sendmail-queue_name" name="filter_LIKES_name" value="${param.filter_LIKES_name}" class="form-control">
- <button class="btn btn-default a-search" onclick="document.sendmail-queueForm.submit()">查询</button>
- </form>
- </div>
- </div>
- <div style="margin-bottom: 20px;">
- <div class="pull-left btn-group" role="group">
- <button class="btn btn-default a-insert" onclick="location.href='sendmail-queue-input.do'">新建</button>
- <button class="btn btn-default a-remove" onclick="table.removeAll()">删除</button>
- <button class="btn btn-default a-export" onclick="table.exportExcel()">导出</button>
- </div>
- <div class="pull-right">
- 每页显示
- <select class="m-page-size form-control" style="display:inline;width:auto;">
- <option value="10">10</option>
- <option value="20">20</option>
- <option value="50">50</option>
- </select>
- 条
- </div>
- <div class="clearfix"></div>
- </div>
- <form id="sendmail-queueGridForm" name="sendmail-queueGridForm" method='post' action="sendmail-queue-remove.do" class="m-form-blank">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="glyphicon glyphicon-list"></i>
- <spring:message code="scope-info.scope-info.list.title" text="列表"/>
- </div>
- <table id="mailQueueGrid" class="table table-hover">
- <thead>
- <tr>
- <th width="10" class="table-check"><input type="checkbox" name="checkAll" onchange="toggleSelectedItems(this.checked)"></th>
- <th>编号</th>
- <th>创建时间</th>
- <th>模板</th>
- <th>接收者</th>
- <th width="80"> </th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.result}" var="item">
- <tr>
- <td><input type="checkbox" class="selectedItem a-check" name="selectedItem" value="${item.id}"></td>
- <td>${item.id}</td>
- <td>${item.createTime}</td>
- <td>${item.sendmailTemplate.name}</td>
- <td>${item.receiver}</td>
- <td>
- <a href="sendmail-queue-input.do?id=${item.id}" class="a-update"><spring:message code="core.list.edit" text="编辑"/></a>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </form>
- <div>
- <div class="m-page-info pull-left">
- 共100条记录 显示1到10条记录
- </div>
- <div class="btn-group m-pagination pull-right">
- <button class="btn btn-default"><</button>
- <button class="btn btn-default">1</button>
- <button class="btn btn-default">></button>
- </div>
- <div class="clearfix"></div>
- </div>
- <div class="m-spacer"></div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|