123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"
- import="com.hotent.platform.model.system.Resources"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>TAB</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript" src="${ctx}/js/lg/plugins/ligerTab.js"></script>
- <script type="text/javascript">
- $(function() {
- $("#tabMyInfo").ligerTab({});
- });
- </script>
- <style type="text/css">
- .tab {
- width: 90px;
- margin: 10px 5px;
- cursor: pointer;
- padding: 10px 6px;
- display: inline-block;
- }
- .title {
- text-align: center;
- margin-top: 6px;
- height: 35px;
- float: left;
- width: 90px;
- display: block;
- word-break: break-all;
- word-wrap: break-word;
- }
- </style>
- </head>
- <body>
- <div id="tabMyInfo" class="panel-nav" style="overflow: hidden; position: relative;">
- <c:forEach var="item" items="${resList}">
- <div title="${item.resName}" tabid="${item.alias }">
- <ul>
- <c:forEach items="${resrouceMap[item.alias]}" var="subItem">
- <div class="tab">
- <div style="height: 64px; text-align: center;" title="${subItem.resName}" onclick="jQuery.openFullWindow('${subItem.defaultUrl}')">
- <img id="iconImg" alt="" src="${ctx}/${subItem.icon}" width="64px;" height="64px;" />
- </div>
- <div class="title">${subItem.resName}</div>
- </div>
- </c:forEach>
- </ul>
- </div>
- </c:forEach>
- </div>
- </body>
- </html>
|