bpmDefinitionFlowImg.jsp 763 B

123456789101112131415161718192021222324252627282930
  1. <%@page pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <html>
  4. <head>
  5. <%@include file="/commons/include/form.jsp" %>
  6. <script type="text/javascript">
  7. var _height=${shapeMeta.height};
  8. function setIframeHeight(){
  9. var mainIFrame = window.parent.document.getElementById("flowchart");
  10. if(!mainIFrame)return;
  11. mainIFrame.style.height=_height+100;
  12. };
  13. $(function(){
  14. if(self!=top){
  15. setIframeHeight();
  16. }
  17. });
  18. </script>
  19. <title>流程示意图</title>
  20. </head>
  21. <body >
  22. <div style="padding-top:40px;background-color: white;">
  23. <div style="position: relative;background:url('${ctx}/bpmImage?definitionId=${actDefId}') no-repeat;width:${shapeMeta.width}px;height:${shapeMeta.height}px;">
  24. </div>
  25. </div>
  26. </body>
  27. </html>