index.jsp 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="utf-8"%>
  2. <%@include file="/WEB-INF/ehr/commons/jsp/commonInclude.jsp" %>
  3. <style>
  4. html{height:100%}
  5. body{height:100%}
  6. .m-index-top{height:80px;background:url('${staticRoot}/images/index/logo.png') left top no-repeat #2a2a34;}
  7. .m-index-top-name{padding-left:40px;line-height:40px;color:#919baf;background:url('${staticRoot}/images/index/head_icon.png') 10px no-repeat;}
  8. .m-index-nav{height:40px;background:url('${staticRoot}/images/index/local_icon.png') 8px 8px no-repeat #fff;padding-left:40px;line-height: 40px;}
  9. .m-index-left{padding-top:10px;background:transparent}
  10. .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}
  11. .m-index-menu-top-over{background:url('${staticRoot}/images/index/index_over_icon.png') 24px 12px no-repeat #f0f0f0;font-size: 16px;color:#1eaaff}
  12. .m-index-center{background-color: #f0f0f0;padding-left: 10px;padding-top: 10px;padding-right: 10px;overflow-y: auto;overflow-x:hidden}
  13. .m-index-content{height:100%;background-color: #fff;border:1px solid #e1e1e1;border-bottom: 0px;}
  14. #ulTree.l-tree{background: transparent}
  15. #ulTree.l-tree li .l-body,#ulTree.l-tree li .l-body span{height:64px;line-height: 64px;font-size: 16px;font-weight: bolder}
  16. #ulTree.l-tree li.l-last .l-body{border-bottom:0px;}
  17. #ulTree.l-tree li .l-body{border-left:10px solid #dce6f0;border-right:10px solid #dce6f0;border-bottom:1px solid #cddceb;}
  18. #ulTree.l-tree li .l-body .l-box{background: transparent;width:0px;}
  19. #ulTree.l-tree li .l-body .l-box.l-tree-icon{width:45px;height:64px;}
  20. #ulTree.l-tree li .l-body .l-box.l-tree-icon img{width:24px;height:24px;margin-top:20px;margin-left:10px;}
  21. #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}
  22. #ulTree.l-tree .l-children li .l-body{padding-left:49px;border-left:6px solid #dce6f0;border-right:0px;border-bottom:0px;}
  23. #ulTree.l-tree .l-children li .l-body.l-selected{border-left:6px solid #1eaaff;background-color: #b9d2f0}
  24. #btnIndexLogout{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/logout_btn.png') no-repeat;margin-left:10px;}
  25. #btnIndexLogout:hover{background:url('${staticRoot}/images/index/logout_over_btn.png') no-repeat;cursor:pointer}
  26. #btnIndexPassword{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/password_btn.png') no-repeat;}
  27. #btnIndexPassword:hover{background:url('${staticRoot}/images/index/password_over_btn.png') no-repeat;cursor:pointer}
  28. </style>
  29. <div id="divIndexMain" style="height:100%">
  30. <div position="top">
  31. <div class="m-index-top">
  32. <div style="float: right;padding-right: 8px">
  33. <div class="m-index-top-name">欢迎您,${userName}</div>
  34. <div style="height:40px;">
  35. <div id="btnIndexLogout"></div>
  36. <div id="btnIndexPassword"></div>
  37. </div>
  38. </div>
  39. </div>
  40. <div class="m-index-nav">
  41. 当前位置:<span id="indexNav"></span>
  42. </div>
  43. </div>
  44. <div position="left" class="m-index-left">
  45. <div class="m-index-menu-top" id="btnIndexHome">系统首页</div>
  46. <div position="center">
  47. <ul id="ulTree"></ul>
  48. </div>
  49. </div>
  50. <div position="center" class="m-index-center" id="divIndexContent">
  51. </div>
  52. </div>