IT-KIMI_SHI\SINOIT.KIMI
2018-06-01 64c40fb427bff513f575f11e4c1e7bd9a1bfe3e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<%@ 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>