| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | <%@ page language="java" contentType="text/html; charset=UTF-8"  pageEncoding="utf-8"%><%@include file="/WEB-INF/ehr/commons/jsp/commonInclude.jsp" %><style>    html{height:100%}    body{height:100%}    .m-index-top{height:80px;background:url('${staticRoot}/images/index/logo.png') left top no-repeat #2a2a34;}    .m-index-top-name{padding-left:40px;line-height:40px;color:#919baf;background:url('${staticRoot}/images/index/head_icon.png') 10px no-repeat;}    .m-index-nav{height:40px;background:url('${staticRoot}/images/index/local_icon.png') 8px 8px no-repeat #fff;padding-left:40px;line-height: 40px;}    .m-index-left{padding-top:10px;background:transparent}    .m-index-menu-top{background:url('${staticRoot}/images/index/index_icon.png') 24px 12px no-repeat #fff;font-weight: bolder;padding-left: 55px;font-size: 16px;line-height: 40px;cursor: pointer}    .m-index-menu-top-over{background:url('${staticRoot}/images/index/index_over_icon.png') 24px 12px no-repeat  #f0f0f0;font-size: 16px;color:#1eaaff}    .m-index-center{background-color: #f0f0f0;padding-left: 10px;padding-top: 10px;padding-right: 10px;overflow-y: auto;overflow-x:hidden}    .m-index-content{height:100%;background-color: #fff;border:1px solid #e1e1e1;border-bottom: 0px;}    #ulTree.l-tree{background: transparent}    #ulTree.l-tree li .l-body,#ulTree.l-tree li .l-body span{height:64px;line-height: 64px;font-size: 16px;font-weight: bolder}    #ulTree.l-tree li.l-last .l-body{border-bottom:0px;}    #ulTree.l-tree li .l-body{border-left:10px solid #dce6f0;border-right:10px solid #dce6f0;border-bottom:1px solid #cddceb;}    #ulTree.l-tree li .l-body .l-box{background: transparent;width:0px;}    #ulTree.l-tree li .l-body .l-box.l-tree-icon{width:45px;height:64px;}    #ulTree.l-tree li .l-body .l-box.l-tree-icon img{width:24px;height:24px;margin-top:20px;margin-left:10px;}    #ulTree.l-tree .l-children li .l-body,#ulTree.l-tree .l-children li .l-body span{height:40px;line-height: 40px;font-size: 12px;font-weight:normal}    #ulTree.l-tree .l-children li .l-body{padding-left:49px;border-left:6px solid #dce6f0;border-right:0px;border-bottom:0px;}    #ulTree.l-tree .l-children li .l-body.l-selected{border-left:6px solid #1eaaff;background-color: #b9d2f0}    #btnIndexLogout{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/logout_btn.png') no-repeat;margin-left:10px;}    #btnIndexLogout:hover{background:url('${staticRoot}/images/index/logout_over_btn.png') no-repeat;cursor:pointer}    #btnIndexPassword{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/password_btn.png') no-repeat;}    #btnIndexPassword:hover{background:url('${staticRoot}/images/index/password_over_btn.png') no-repeat;cursor:pointer}</style><div id="divIndexMain" style="height:100%">    <div position="top">        <div class="m-index-top">            <div style="float: right;padding-right: 8px">                <div class="m-index-top-name">欢迎您,${userName}</div>                <div style="height:40px;">                    <div id="btnIndexLogout"></div>                    <div id="btnIndexPassword"></div>                </div>            </div>        </div>        <div class="m-index-nav">            当前位置:<span id="indexNav"></span>        </div>    </div>    <div position="left" class="m-index-left">        <div class="m-index-menu-top" id="btnIndexHome">系统首页</div>        <div position="center">            <ul id="ulTree"></ul>        </div>    </div>    <div position="center" class="m-index-center" id="divIndexContent">    </div></div>
 |