resourcesNext.jsp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" import="com.hotent.platform.model.system.SysTab"%>
  2. <%@include file="/commons/include/html_doctype.html" %>
  3. <html>
  4. <head>
  5. <title>我的流程定义列表</title>
  6. <%@include file="/commons/include/get.jsp" %>
  7. <script type="text/javascript" src="${ctx}/js/util/form.js"></script>
  8. <script type="text/javascript" src="${ctx}/js/plugins/ligerGrid.js"></script>
  9. <style type="text/css">
  10. html,body {
  11. padding: 0px;
  12. margin: 0;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="panel-body">
  20. <c:forEach var="resNext" items="${sysTabNext}">
  21. <div style="width: 90px; margin: 10px 5px; cursor: pointer; padding: 10px 6px; display: inline-block;">
  22. <div style="height: 64px; text-align: center;" title="${resNext.resName}" onclick="jQuery.openFullWindow('${resNext.defaultUrl}')">
  23. <img id="iconImg" alt="" src="/bpm33${resNext.icon}" width="64px;" height="64px;">
  24. </div>
  25. <div class="title" style="text-align: center;margin-top: 6px; height: 35px; float: left; width: 90px;">${resNext.resName}</div>
  26. </div>
  27. </c:forEach>
  28. </div><!-- end of panel-body -->
  29. </div> <!-- end of panel -->
  30. </body>
  31. </html>