| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "bpm-workspace");%>
- <%pageContext.setAttribute("currentMenu", "bpm-process");%>
- <!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: 'processGrid',
- 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: {
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'processGridForm',
- exportUrl: 'process-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/bpm-workspace3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/bpm-workspace3.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-note-remove.do" class="m-form-blank">
- <div class="panel panel-default">
- <div class="panel-heading">
- <i class="glyphicon glyphicon-list"></i>
- 列表
- </div>
- <table id="pimRemindGrid" class="table table-hover">
- <thead>
- <tr>
- <th class="sorting" name="id">编号</th>
- <th class="sorting" name="name">流程定义</th>
- <th class="sorting" name="createTime">创建时间</th>
- <th class="sorting" name="endTime">结束时间</th>
- <th class="sorting" name="assignee">负责人</th>
- <th width="170"> </th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.result}" var="item">
- <tr>
- <td>${item.id}</td>
- <td>${item.processDefinitionId}</td>
- <td><fmt:formatDate value="${item.startTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
- <td><fmt:formatDate value="${item.endTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
- <td><tags:user userId="${item.startUserId}"/></td>
- <td>
- <a href="workspace-viewHistory.do?processInstanceId=${item.id}">历史</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>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|