actioncontent.jsp
3.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<link rel="stylesheet" href="/integration/css/base_wev8.css" type="text/css">
<html>
<style>
.menuli1{
height:25px;
line-height:25px;
background: url(images/sub1_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli2{
height:25px;
line-height:25px;
background: url(images/sub2_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli3{
height:25px;
line-height:25px;
background: url(images/sub3_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli4{
height:25px;
line-height:25px;
background: url(images/sub4_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli5{
height:25px;
line-height:25px;
background: url(images/sub5_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli6{
height:25px;
line-height:25px;
background: url(images/sub6_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli7{
height:25px;
line-height:25px;
background: url(images/sub7_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli8{
height:25px;
line-height:25px;
background: url(images/sub8_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
.menuli9{
height:25px;
line-height:25px;
background: url(images/sub9_wev8.png) left center no-repeat;
padding-left:30px;
padding-right:0px;
color:#589456;
}
</style>
<body scroll="no" >
<%
String type=Util.null2String(request.getParameter("type"));
String showtype=Util.null2String(request.getParameter("showtype"));
String loadurl="/integration/dmllist.jsp";
%>
<div class="w-all relative" style="background: #F5F6FA;height:50px;">
<div class="absolute " style="top:12px;height:38px;width: 1000px" id="tabNav">
<div class="left hand m-l-10 m-r-10 item" href="/integration/dmllist.jsp">
<table height="38px" <%if("1".equals(type)){out.print("class='selected'");}%>>
<tr>
<td class="lefttd" style="width: 5px;"></td>
<td class="centertd" >
<div class="font12 bold menuli1" >
<%=SystemEnv.getHtmlLabelName(32196,user.getLanguage())%><!-- 集成接口列表 -->
</div>
</td>
<td class="righttd" style="width: 5px;"></td>
</tr>
</table>
</div>
<div class="left hand m-r-10 item" href="/servicesetting/actionsetting.jsp">
<table height="38px " <%if("2".equals(type)){out.print("class='selected'");}%>>
<tr>
<td class="lefttd" style="width: 5px;"></td>
<td class="centertd" >
<div class="font12 bold menuli2" >
<%=SystemEnv.getHtmlLabelName(32197,user.getLanguage())%><!-- 自定义接口设置 -->
</div>
</td>
<td class="righttd" style="width: 5px;"></td>
</tr>
</table>
</div>
</div>
</div>
<div style="border-top: #0b7906 solid 3px;">
<iframe id="contentFrame" src="<%=loadurl%>" frameborder="0" width="100%" height="90%"></iframe>
</div>
</body>
<style>
.selected .lefttd{
background: url('images/btn_left_wev8.png');
width: 5px;
}
.selected .centertd{
background:url('images/btn_center_wev8.png') repeat;
}
.selected .righttd{
background: url('images/btn_right_wev8.png');
width: 5px;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#tabNav").find(".item").bind("click",function(){
if(!jQuery(this).find("table").hasClass("selected")){
jQuery(".selected").removeClass("selected");
jQuery(this).find("table").addClass("selected");
jQuery("#contentFrame").attr("src",jQuery(this).attr("href"))
}
})
})
</script>
</html>