bpmDefinitionDetail.jsp 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>流程定义明细</title>
  6. <%@include file="/commons/include/form.jsp" %>
  7. <style type="text/css">
  8. div.flowNode{cursor:pointer;}
  9. </style>
  10. </head>
  11. <body>
  12. <div class="panel">
  13. <div class="hide-panel">
  14. <div class="panel-top">
  15. <jsp:include page="incDefinitionHead.jsp">
  16. <jsp:param value="流程明细" name="title"/>
  17. </jsp:include>
  18. <div class="panel-container">
  19. <f:tab curTab="detail" tabName="flow"/>
  20. <div class="panel-detail">
  21. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  22. <tr>
  23. <th width="20%">分类</th>
  24. <td>${globalType.typeName}</td>
  25. </tr>
  26. <tr>
  27. <th width="20%">流程标题:</th>
  28. <td>${bpmDefinition.subject}</td>
  29. </tr>
  30. <tr>
  31. <th width="20%">流程定义Key:</th>
  32. <td>${bpmDefinition.defKey}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">任务标题生成规则:</th>
  36. <td>${bpmDefinition.taskNameRule}</td>
  37. </tr>
  38. <tr>
  39. <th width="20%">流程描述:</th>
  40. <td>${bpmDefinition.descp}</td>
  41. </tr>
  42. <tr>
  43. <th width="20%">创建人:</th>
  44. <td><f:userName userId="${bpmDefinition.createBy}"/></td>
  45. </tr>
  46. <tr>
  47. <th width="20%">创建时间:</th>
  48. <td><fmt:formatDate value="${bpmDefinition.createtime}" pattern="yyyy-MM-dd HH:mm"/> </td>
  49. </tr>
  50. <tr>
  51. <th width="20%">更新人:</th>
  52. <td><f:userName userId="${bpmDefinition.updateBy}"/></td>
  53. </tr>
  54. <tr>
  55. <th>更新原因:</th>
  56. <td>${bpmDefinition.reason}</td>
  57. </tr>
  58. <tr>
  59. <th width="20%">更新时间:</th>
  60. <td><fmt:formatDate value="${bpmDefinition.updatetime}" pattern="yyyy-MM-dd HH:mm"/> </td>
  61. </tr>
  62. <tr>
  63. <th width="20%">流程状态:</th>
  64. <td>
  65. <c:choose>
  66. <c:when test="${bpmDefinition.status==1}">
  67. <font color='green'>启用</font>
  68. </c:when>
  69. <c:when test="${bpmDefinition.status==2}">
  70. <font color='red'>禁用</font>
  71. </c:when>
  72. <c:when test="${bpmDefinition.status==3}">
  73. <font color='red'>禁用(实例)</font>
  74. </c:when>
  75. <c:when test="${bpmDefinition.status==4}">
  76. <font color='green'>测试</font>
  77. </c:when>
  78. <c:otherwise><font color='red'>未知
  79. </font></c:otherwise>
  80. </c:choose>
  81. </td>
  82. </tr>
  83. <tr>
  84. <th width="20%">版本号:</th>
  85. <td>${bpmDefinition.versionNo}</td>
  86. </tr>
  87. <tr>
  88. <th width="20%">activiti流程定义ID:</th>
  89. <td>${bpmDefinition.actDefId}</td>
  90. </tr>
  91. <tr>
  92. <th width="20%">act流程定义Key:</th>
  93. <td>${bpmDefinition.actDefKey}</td>
  94. </tr>
  95. </table>
  96. </div>
  97. </div>
  98. </div>
  99. </body>
  100. </html>