processRunDetail.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <%--
  2. time:2011-12-04 18:56:52
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  6. <%@taglib prefix="f" uri="http://www.jee-soft.cn/functions" %>
  7. <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  8. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  9. <%@include file="/commons/include/html_doctype.html"%>
  10. <html>
  11. <head>
  12. <title>流程实例明细</title>
  13. <%@include file="/commons/include/getById.jsp"%>
  14. <script type="text/javascript">
  15. </script>
  16. </head>
  17. <body>
  18. <div class="panel">
  19. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  20. <tr>
  21. <th width="20%">
  22. 运行实例ID(runId)
  23. </th>
  24. <td>${processRun.runId}</td>
  25. </tr>
  26. <tr>
  27. <th width="20%">流程定义ID:</th>
  28. <td>${processRun.defId}</td>
  29. </tr>
  30. <tr>
  31. <th width="20%">流程实例标题:</th>
  32. <td>${processRun.subject}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">创建人ID:</th>
  36. <td>${processRun.creatorId}</td>
  37. </tr>
  38. <tr>
  39. <th width="20%">创建人:</th>
  40. <td>${processRun.creator}</td>
  41. </tr>
  42. <tr>
  43. <th width="20%">创建时间:</th>
  44. <td>${f:shortDate(processRun.createtime)}</td>
  45. </tr>
  46. <tr>
  47. <th width="20%">业务表单简述:</th>
  48. <td>${processRun.busDescp}</td>
  49. </tr>
  50. <tr>
  51. <th width="20%">状态:</th>
  52. <td>
  53. <c:choose>
  54. <c:when test="${processRun.status==1}">
  55. <font color='green'>正在运行</font>
  56. </c:when>
  57. <c:when test="${processRun.status==2}">
  58. 结束
  59. </c:when>
  60. </c:choose>
  61. </td>
  62. </tr>
  63. <tr>
  64. <th width="20%">ACT流程实例ID:</th>
  65. <td>${processRun.actInstId}</td>
  66. </tr>
  67. <tr>
  68. <th width="20%">ACT流程定义ID:</th>
  69. <td>${processRun.actDefId}</td>
  70. </tr>
  71. <tr>
  72. <th width="20%">businessKey:</th>
  73. <td>${processRun.businessKey}</td>
  74. </tr>
  75. </table>
  76. </div>
  77. </body>
  78. </html>