bpmNodeMessageGet.jsp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <%--
  2. time:2011-12-31 15:48:59
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>流程节点邮件明细</title>
  9. <%@include file="/commons/include/getById.jsp" %>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">流程节点邮件详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group"><a class="link back" href="../bpmNodeMessage/list.ht"><span></span>返回</a></div>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="panel-body">
  27. <form id="bpmNodeMessageForm" method="post" action="add2.ht">
  28. <div class="panel-detail">
  29. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  30. <tr>
  31. <th width="20%">主题:</th>
  32. <td>${bpmNodeMessage.subject}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">收件人:</th>
  36. <td>${bpmNodeMessage.receiver}</td>
  37. </tr>
  38. <tr>
  39. <th width="20%">抄送:</th>
  40. <td>${bpmNodeMessage.copyTo}</td>
  41. </tr>
  42. <tr>
  43. <th width="20%">流程定义ID:</th>
  44. <td>${bpmNodeMessage.actDefId}</td>
  45. </tr>
  46. <tr>
  47. <th width="20%">流程节点ID:</th>
  48. <td>${bpmNodeMessage.nodeId}</td>
  49. </tr>
  50. <tr>
  51. <th width="20%">内容模版:</th>
  52. <td>${bpmNodeMessage.templateId}</td>
  53. </tr>
  54. <tr>
  55. <th width="20%">秘密抄送:</th>
  56. <td>${bpmNodeMessage.bcc}</td>
  57. </tr>
  58. <tr>
  59. <th width="20%">发件人:</th>
  60. <td>${bpmNodeMessage.fromUser}</td>
  61. </tr>
  62. <tr>
  63. <th width="20%">messageType:</th>
  64. <td>${bpmNodeMessage.messageType}</td>
  65. </tr>
  66. </table>
  67. </div>
  68. </form>
  69. </div>
  70. </div>
  71. </body>
  72. </html>