ChartsManage.jsp
1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%
session.setAttribute("customid",request.getParameter("customid"));
%>
<!DOCTYPE html>
<head>
<title><%=SystemEnv.getHtmlLabelName(15101,user.getLanguage())%></title>
<link rel="stylesheet" href="./css/manage.css">
<script type="text/javascript" src="./js/manage.js"></script>
</head>
<body>
<div class="chartsTop" id="chartsTop">
<div style="width:40px;float:left;margin:2px 10px 0 0;"><img src="/formmode/images/reportIconRounded_wev8.png" /></div>
<%=SystemEnv.getHtmlLabelNames("15101,426",user.getLanguage())%>
</div>
<div class="chartsButtom" >
<div class="leftTree" id="leftTree">
<iframe id="treeFrame"style="width: 100%;height: 100%;border: hidden" src="ChartsTree.jsp"></iframe>
</div>
<div class="index" id="index">
<div class="tab">
<div class="modelist" style="width:8%;float: left">
列表
</div>
<div class="modepage" style="width: 8%;float: left">
页面
</div>
</div>
<div class="list" id="list">
<iframe id="listFrame" name="listFrame" style="width: 100%;height: 100%;border: hidden" src="list.jsp"></iframe>
</div>
<div class="detail">
<iframe id="indexFrame" name="indexFrame" style="width: 100%;height: 100%;border: hidden" src="index.jsp"></iframe>
</div>
</div>
</div>
</body>
</html>