processPic.jsp 1.2 KB

12345678910111213141516171819202122232425262728
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools"></t:base>
  4. <!DOCTYPE html >
  5. <html>
  6. <head>
  7. <title><t:mutiLang langKey="common.chart.preview"/></title>
  8. </head>
  9. <body style="overflow-y: hidden;" scroll="no">
  10. <div>
  11. <c:if test="${tag eq 'task'}">
  12. <img src='activitiController.do?processPic&resourceType=image&processInstanceId=${processInstanceId}' style='position: absolute; left: 0px; top: 0px;' />
  13. </c:if>
  14. <c:if test="${tag eq 'deployment'}">
  15. <img src='activitiController.do?processPicByDeploy&deploymentId=${deploymentId}&resourceName=${resourceName}' style='position: absolute; left: 0px; top: 0px;' />
  16. </c:if>
  17. <c:if test="${tag eq 'project'}">
  18. <img src='activitiController.do?processPic&resourceType=image&processInstanceId=${processInstanceId}' style='position: absolute; left: 0px; top: 0px;' />
  19. </c:if>
  20. </div>
  21. <%--
  22. <div style="position:absolute; border:2px solid red;left:${activityImpl.x}px;top:${activityImpl.y }px;width:${activityImpl.width }px;height:${activityImpl.height }px;"></div>
  23. --%>
  24. </body>
  25. </html>