| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "bpm-workspace");%>
- <%pageContext.setAttribute("currentMenu", "bpm-task");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>流程列表</title>
- <%@include file="/common/s.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-workspace.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/bpm-workspace.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="span10" style="float:right">
- <article class="m-blank">
- <div class="pull-left">
-
- </div>
- <div class="pull-right">
- 每页显示
- <select class="m-page-size">
- <option value="10">10</option>
- <option value="20">20</option>
- <option value="50">50</option>
- </select>
- 条
- </div>
- <div class="m-clear"></div>
- </article>
- <article class="m-widget">
- <header class="header">
- <h4 class="title">列表</h4>
- </header>
- <div class="content">
- <table id="demoGrid" class="m-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="id">编号</th>
- <th class="sorting" name="name">名称</th>
- <th class="sorting" name="createTime">创建时间</th>
- <th class="sorting" name="assignee">负责人</th>
- <th class="sorting" name="suspended">状态</th>
- <th width="170"> </th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.result}" var="item">
- <tr>
- <td><input type="checkbox" class="selectedItem" name="selectedItem" value="${item.id}"></td>
- <td>${item.id}</td>
- <td>${item.name}</td>
- <td><fmt:formatDate value="${item.createTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
- <td>
- <tags:user userId="${item.assignee}"/>
- <c:if test="${not empty item.owner && item.assignee != item.owner}">
- <b>(原执行人:<tags:user userId="${item.owner}"/>)</b>
- </c:if>
- </td>
- <td>${item.suspended ? '挂起' : '激活'}</td>
- <td>
- <a href="${tenantPrefix}/form/form-viewTaskForm.do?taskId=${item.id}">完成</a>
- <%--
- <c:if test="${delegationState != 'PENDING'}">
- <a href="workspace-prepareDelegateTask.do?taskId=${item.id}">代理</a>
- </c:if>
- <c:if test="${delegationState == 'PENDING'}">
- <a href="workspace-resolveTask.do?taskId=${item.id}">处理</a>
- </c:if>
- <a href="workspace-rollback.do?taskId=${item.id}">回退</a>
- --%>
- <a href="workspace-viewHistory.do?processInstanceId=${item.processInstanceId}">历史</a>
- <%--
- <a href="workspace-changeCounterSign.do?taskId=${item.id}">加减签</a>
- --%>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </article>
- <article>
- <div class="m-page-info pull-left">
- 共100条记录 显示1到10条记录
- </div>
- <div class="btn-group m-pagination pull-right">
- <button class="btn btn-small"><</button>
- <button class="btn btn-small">1</button>
- <button class="btn btn-small">></button>
- </div>
- <div class="m-clear"></div>
- </article>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|