bpmDataTemplateDetailData.jsp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <%@page pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <title>表单明细</title>
  6. <%@include file="/commons/include/customForm.jsp" %>
  7. <script type="text/javascript">
  8. $().ready(function (){
  9. hideExtend();
  10. });
  11. function hideExtend(){
  12. $("a.extend").remove();
  13. };
  14. //自定义打印
  15. function customPrint(printAlias){
  16. var url="${ctx}/platform/form/bpmPrintTemplate/printForm.ht?formKey=${formKey}&businessKey=${id}&printAlias="+printAlias;
  17. jQuery.openFullWindow(url);
  18. }
  19. </script>
  20. </head>
  21. <body >
  22. <div class="panel">
  23. <div class="l-layout-header">表单明细</div>
  24. </div>
  25. <div class="panel-toolbar">
  26. <div class="buttons">
  27. <c:forEach items="${printTemplateList}" var="ptList">
  28. <a href="javascript:void(0);" onclick="customPrint('${ptList.alias}')" class="link print"><span></span>${ptList.temapalteName }</a>
  29. </c:forEach>
  30. </div>
  31. </div>
  32. <div class="panel-body" style="overflow:auto;width: 80%;margin: auto;">
  33. ${form}
  34. </div>
  35. </body>
  36. </html>