index.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!--#include file="/inc/header.html"-->
  2. <script type="text/javascript">
  3. window.renderHeader=function(e) {
  4. var template="{{#childenList}}<li class=\"bif-nav-item\" data-type=\"{{moduleType}}\">{{moduleName}}</li>{{/childenList}}";
  5. var views = Mustache.render(template, e);
  6. $("#bif-nav-ul").html(views);
  7. $(".tree-breadcrumb #nav-item-a").html($("#bif-nav-ul li:first-child").html());
  8. $("#bif-nav-ul li:first-child").addClass("active");
  9. tabSelect.sitePlatformTree(e.childenList);
  10. };
  11. $(function(){
  12. var modules=JSON.parse(window.sessionStorage.getItem("modules"));
  13. // var treemap = window.treemap[20].childenList[2]
  14. for(var i = 0;i<window.treemap[20].childenList.length;i++){
  15. if(window.treemap[20].childenList[i].moduleName === '站点平台管理'){
  16. var treemap = window.treemap[20].childenList[i]
  17. }
  18. }
  19. // var treemap = {
  20. // moduleName:'站点平台管理',
  21. // moduleType:'pages/sitePlatform/index.html',
  22. // moduleUrl:'pages/sitePlatform/index.html',
  23. // childenList:[
  24. // {
  25. // moduleName:'公告管理',
  26. // moduleType:'1',
  27. // moduleUrl:'1',
  28. // },{
  29. // moduleName:'站点操作日志',
  30. // moduleType:'2',
  31. // moduleUrl:'2',
  32. // },
  33. // {
  34. // moduleName:'数据同步',
  35. // moduleType:'3',
  36. // moduleUrl:'3',
  37. // },
  38. // {
  39. // moduleName:'分公司下载',
  40. // moduleType:'5',
  41. // moduleUrl:'5',
  42. // }
  43. // ]
  44. // }
  45. if(window.treemap){
  46. renderHeader(treemap);//站点平台管理ID 8
  47. }else if(modules){
  48. renderHeader(treemap);
  49. }
  50. })
  51. </script>
  52. <div class="con-wrap" style="width:1180px">
  53. <div class="bif-nav">
  54. <ul id="bif-nav-ul">
  55. </ul>
  56. </div>
  57. <div id="con-main">
  58. <div id="con-map" class="main3" style="width:1180px">
  59. </div>
  60. </div>
  61. </div>
  62. <!--#include file="/inc/footer.html"-->
  63. <style>
  64. /* .main3{
  65. min-height: 200px!important;
  66. }
  67. .bif-nav-item{
  68. width: 150px;
  69. text-align: center;
  70. }*/
  71. .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
  72. display: none
  73. }
  74. #con-map{
  75. height:400px;
  76. min-height: 400px;
  77. margin:0
  78. }
  79. #con-main{
  80. min-height:420px;
  81. }
  82. .bif-nav-item{
  83. /* width: 150px; */
  84. text-align: center;
  85. }
  86. </style>
  87. </body>
  88. </html>