index.jsp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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{background:#f6f9fa;}
  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: #f6f9fa;}
  15. #ulTree.l-tree li .l-body,#ulTree.l-tree li .l-body span{height: 45px;line-height: 45px;font-size: 14px;font-weight: bolder;}
  16. #ulTree.l-tree li .l-body{background: #f6f9fa;border-bottom: #e8e8e8 solid 1px;}
  17. #ulTree.l-tree li>.l-selected{background:#4DB2EE;}
  18. #ulTree.l-tree li>.l-selected span{color:#fff;}
  19. #ulTree.l-tree li .l-body .l-box{background: transparent;width:0px;}
  20. #ulTree.l-tree li .l-body .l-box.l-tree-icon{width:45px;height:45px;}
  21. #ulTree.l-tree li .l-body .l-box.l-tree-icon img{width:16px;height:16px;margin-top:14px;margin-left:20px;}
  22. #ulTree.l-tree .l-children li .l-body,#ulTree.l-tree .l-children li .l-body span{height:45px;line-height: 45px;font-size: 12px;font-weight:normal;}
  23. #ulTree.l-tree .l-children li .l-body{height: 45px;line-height: 45px;padding-left:15px;}
  24. #ulTree.l-tree .l-children li .l-body.l-selected{background-color: #f6f9fa;}
  25. #ulTree.l-tree .l-children li>.l-body.l-selected span{color: #4DB2EE;}
  26. #btnIndexLogout{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/logout_btn.png') no-repeat;margin-left:10px;}
  27. #btnIndexLogout:hover{background:url('${staticRoot}/images/index/logout_over_btn.png') no-repeat;cursor:pointer}
  28. #btnIndexPassword{float: right;width:40px;height:40px;background:url('${staticRoot}/images/index/password_btn.png') no-repeat;}
  29. #btnIndexPassword:hover{background:url('${staticRoot}/images/index/password_over_btn.png') no-repeat;cursor:pointer}
  30. </style>
  31. <div id="divIndexMain" style="height:100%">
  32. <div position="top">
  33. <div class="m-index-top">
  34. <div style="float: right;padding-right: 8px">
  35. <div class="m-index-top-name">欢迎您! ${userName} 【tenant: ${tenant}】</div>
  36. <div style="height:40px;">
  37. <div id="btnIndexLogout"></div>
  38. <div id="btnIndexPassword"></div>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="m-index-nav">
  43. 当前位置:<span id="indexNav"></span>
  44. </div>
  45. </div>
  46. <div position="left" class="m-index-left">
  47. <div position="center">
  48. <ul id="ulTree"></ul>
  49. </div>
  50. </div>
  51. <div position="center" class="m-index-center" id="divIndexContent">
  52. </div>
  53. <input type="hidden" id="ehrUser" value="${ehrUser}">
  54. </div>