<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
<!DOCTYPE html>
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
<html lang="en">
|
<head>
|
<%@ include file="/common/global.jsp"%>
|
<title>动态Form流程列表</title>
|
<%@ include file="/common/meta.jsp" %>
|
<%@ include file="/common/include-base-styles.jsp" %>
|
<%@ include file="/common/include-jquery-ui-theme.jsp" %>
|
<link href="${ctx }/js/common/plugins/jui/extends/timepicker/jquery-ui-timepicker-addon.css" type="text/css" rel="stylesheet" />
|
<link href="${ctx }/js/common/plugins/qtip/jquery.qtip.min.css" type="text/css" rel="stylesheet" />
|
<%@ include file="/common/include-custom-styles.jsp" %>
|
|
<script src="${ctx }/js/common/jquery-1.8.3.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/plugins/jui/jquery-ui-${themeVersion }.min.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/plugins/jui/extends/i18n/jquery-ui-date_time-picker-zh-CN.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/plugins/validate/jquery.validate.pack.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/plugins/validate/messages_cn.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/plugins/qtip/jquery.qtip.pack.js" type="text/javascript"></script>
|
<script src="${ctx }/js/common/common.js" type="text/javascript"></script>
|
<script type="text/javascript">
|
// 利用动态表单的功能,做一个标示
|
var processType = '${empty processType ? param.processType : processType}';
|
</script>
|
<script src="${ctx }/js/module/form/dynamic/dynamic-process-list.js" type="text/javascript"></script>
|
</head>
|
|
<body>
|
<c:if test="${not empty message}">
|
<div id="message" class="alert alert-success">${message}</div>
|
<!-- 自动隐藏提示信息 -->
|
<script type="text/javascript">
|
setTimeout(function() {
|
$('#message').hide('slow');
|
}, 5000);
|
</script>
|
</c:if>
|
<table width="100%" class="need-border">
|
<thead>
|
<tr>
|
<th>ID</th>
|
<th>DID</th>
|
<th>名称</th>
|
<th>KEY</th>
|
<th>版本号</th>
|
<th>XML</th>
|
<th>图片</th>
|
<th>操作</th>
|
</tr>
|
</thead>
|
<tbody>
|
<c:forEach items="${page.result }" var="process">
|
<tr>
|
<td class='process-id'>${process.id }</td>
|
<td>${process.deploymentId }</td>
|
<td class='process-name'>${process.name }</td>
|
<td>${process.key }</td>
|
<td>${process.version }</td>
|
<td><a target="_blank" href='${ctx }/workflow/resource/read?processDefinitionId=${process.id}&resourceType=xml'>${process.resourceName }</a></td>
|
<td><a target="_blank" href='${ctx }/workflow/resource/read?processDefinitionId=${process.id}&resourceType=image'>${process.diagramResourceName }</a></td>
|
<td><a class="Ftartup-process">启动</a></td>
|
</tr>
|
</c:forEach>
|
</tbody>
|
</table>
|
<tags:pagination page="${page}" paginationSize="${page.pageSize}"/>
|
</body>
|
</html>
|