bpmDefinitionGet.jsp 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>流程定义扩展明细</title>
  6. <%@include file="/commons/include/getById.jsp" %>
  7. </head>
  8. <body>
  9. <div class="panel">
  10. <div class="panel-top">
  11. <div class="tbar-title">
  12. <span class="tbar-label">流程定义明细--${bpmDefinition.subject}</span>
  13. </div>
  14. <div class="panel-toolbar">
  15. <div class="toolBar">
  16. <div class="group">
  17. <c:choose>
  18. <c:when test="${not empty param['returnFromDetail']}">
  19. <a class="link back" href="myList.ht"><span></span>返回</a>
  20. </c:when>
  21. <c:otherwise>
  22. <a class="link back" href="list.ht"><span></span>返回</a>
  23. </c:otherwise>
  24. </c:choose>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="panel-body">
  30. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  31. <tr>
  32. <th width="20%" nowrap="nowrap">分类</th>
  33. <td>${globalType.typeName}</td>
  34. </tr>
  35. <tr>
  36. <th width="20%" nowrap="nowrap">流程标题:</th>
  37. <td>${bpmDefinition.subject}</td>
  38. </tr>
  39. <tr>
  40. <th width="20%" nowrap="nowrap">流程定义Key:</th>
  41. <td>${bpmDefinition.defKey}</td>
  42. </tr>
  43. <tr>
  44. <th width="20%" nowrap="nowrap">任务标题生成规则:</th>
  45. <td>${bpmDefinition.taskNameRule}</td>
  46. </tr>
  47. <tr>
  48. <th width="20%" nowrap="nowrap">流程描述:</th>
  49. <td>${bpmDefinition.descp}</td>
  50. </tr>
  51. <tr>
  52. <th width="20%" nowrap="nowrap">创建时间:</th>
  53. <td><fmt:formatDate value="${bpmDefinition.createtime}" pattern="yyyy-MM-dd HH:mm"/> </td>
  54. </tr>
  55. <tr>
  56. <th width="20%" nowrap="nowrap">流程状态:</th>
  57. <td>
  58. <c:choose>
  59. <c:when test="${bpmDefinition.status==1}">
  60. <font color='green'>可用</font>
  61. </c:when>
  62. <c:otherwise>禁用</c:otherwise>
  63. </c:choose>
  64. </td>
  65. </tr>
  66. <tr>
  67. <th width="20%">版本号:</th>
  68. <td>${bpmDefinition.versionNo}</td>
  69. </tr>
  70. <tr>
  71. <th>流程图</th>
  72. <td>
  73. <img src="${ctx}/bpmImage?deployId=${bpmDefinition.actDeployId}"/>
  74. </td>
  75. </tr>
  76. </table>
  77. </div>
  78. </div>
  79. </body>
  80. </html>