1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!--#include file="/inc/header.html"-->
- <script type="text/javascript">
- window.renderHeader=function(e) {
- var template="{{#childenList}}<li class=\"bif-nav-item\" data-type=\"{{moduleType}}\">{{moduleName}}</li>{{/childenList}}";
- var views = Mustache.render(template, e);
- $("#bif-nav-ul").html(views);
- $(".tree-breadcrumb #nav-item-a").html($("#bif-nav-ul li:first-child").html());
- $("#bif-nav-ul li:first-child").addClass("active");
- tabSelect.sitePlatformTree(e.childenList);
- };
- $(function(){
- var modules=JSON.parse(window.sessionStorage.getItem("modules"));
- // var treemap = window.treemap[20].childenList[2]
- for(var i = 0;i<window.treemap[20].childenList.length;i++){
- if(window.treemap[20].childenList[i].moduleName === '站点平台管理'){
- var treemap = window.treemap[20].childenList[i]
- }
- }
- // var treemap = {
- // moduleName:'站点平台管理',
- // moduleType:'pages/sitePlatform/index.html',
- // moduleUrl:'pages/sitePlatform/index.html',
- // childenList:[
- // {
- // moduleName:'公告管理',
- // moduleType:'1',
- // moduleUrl:'1',
- // },{
- // moduleName:'站点操作日志',
- // moduleType:'2',
- // moduleUrl:'2',
- // },
- // {
- // moduleName:'数据同步',
- // moduleType:'3',
- // moduleUrl:'3',
- // },
- // {
- // moduleName:'分公司下载',
- // moduleType:'5',
- // moduleUrl:'5',
- // }
- // ]
- // }
- if(window.treemap){
- renderHeader(treemap);//站点平台管理ID 8
- }else if(modules){
- renderHeader(treemap);
- }
- })
- </script>
- <div class="con-wrap" style="width:1180px">
- <div class="bif-nav">
- <ul id="bif-nav-ul">
- </ul>
- </div>
- <div id="con-main">
- <div id="con-map" class="main3" style="width:1180px">
- </div>
- </div>
- </div>
- <!--#include file="/inc/footer.html"-->
- <style>
- /* .main3{
- min-height: 200px!important;
- }
- .bif-nav-item{
- width: 150px;
- text-align: center;
- }*/
- .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
- display: none
- }
- #con-map{
- height:400px;
- min-height: 400px;
- margin:0
- }
- #con-main{
- min-height:420px;
- }
- .bif-nav-item{
- /* width: 150px; */
- text-align: center;
- }
- </style>
- </body>
- </html>
|