|
@@ -6,7 +6,7 @@
|
|
|
<%-- <a href="javascript:;">
|
|
|
<img src="${ctx }/static/images/logo.png" />
|
|
|
</a> --%>
|
|
|
- <span style="color: #fff;font-size: 21px;">CMS管理系统</span>
|
|
|
+ <span style="color: #fff;font-size: 21px;">医政沙龙管理系统</span>
|
|
|
</div>
|
|
|
<div class="n_user">
|
|
|
<div class="u_left">
|
|
@@ -19,9 +19,9 @@
|
|
|
<div class="r_logout"><a href="${ctx }/login_out">[退出]</a></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div class="n_list" id="menu">
|
|
|
-
|
|
|
+
|
|
|
<c:forEach items="${sessionScope.session_menu_resource }" var="resource">
|
|
|
<div class="l_item">
|
|
|
<div class="i_default">
|
|
@@ -53,43 +53,42 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</c:forEach>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div class="n_visible">
|
|
|
<a href="javascript:;"><i class="icon"></i></a>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
$(function(){
|
|
|
-
|
|
|
+
|
|
|
var menuName = '${menu_name}';
|
|
|
-
|
|
|
+
|
|
|
$('#menu div.l_item').each(function(idx, obj){
|
|
|
-
|
|
|
+
|
|
|
var txt = $(obj).find('div.i_default span').text();
|
|
|
if($.trim(txt) == menuName){
|
|
|
$(obj).addClass('current');
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$(obj).find('div.i_menu div.m_item').each(function(idxCh, objCh){
|
|
|
-
|
|
|
+
|
|
|
var txtCh = $(objCh).find('span').text();
|
|
|
if($.trim(txtCh) == menuName){
|
|
|
$(objCh).addClass('current');
|
|
|
$(obj).addClass('current');
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
-
|