| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "pim");%>
- <%pageContext.setAttribute("currentMenu", "msg");%>
- <%pageContext.setAttribute("currentTitle", "bpm-process-4");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>收件箱</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- var config = {
- id: 'pimRemindGrid',
- 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_content': '${param.filter_LIKES_content}'
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'pimRemindGridForm',
- exportUrl: 'pim-info-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>
- <%request.setAttribute("pageNow", "pim");%>
- <%@include file="/header/pim3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/pim3.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- <div style="margin-bottom: 20px;">
- <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="pimRemindGridForm" name="pimRemindGridForm" method='post' action="pim-info-remove.do" class="m-form-blank">
- <div class="panel panel-default">
- <div class="panel-heading">
- 发件箱
- </div>
- <table id="pimRemindGrid" class="table table-hover">
- <thead>
- <tr>
- <th width="10" class="m-table-check"><input type="checkbox" name="checkAll" onchange="toggleSelectedItems(this.checked)"></th>
- <th class="sorting" name="name">标题</th>
- <th class="sorting" name="name">发件人</th>
- <th class="sorting" name="name">发送时间</th>
- <th class="sorting" name="name">状态</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><a href="msg-info-view.do?id=${item.id}">${item.name}</a></td>
- <td><tags:user userId="${item.senderId}"/></td>
- <td><fmt:formatDate value="${item.createTime}" type="both"/></td>
- <td>${item.status == 0 ? '未读' : '已读'}</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>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|