index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <!--#include file="/inc/header.html"-->
  2. <script type="text/javascript">
  3. window.renderHeader=function(e)
  4. {
  5. var template="{{#childenList}}<li class=\"bif-nav-item\" data-type=\"{{moduleType}}\">{{moduleName}}</li>{{/childenList}}";
  6. var views = Mustache.render(template, e);
  7. $("#bif-nav-ul").html(views);
  8. $(".tree-breadcrumb #nav-item-a").html($("#bif-nav-ul li:first-child").html());
  9. $("#bif-nav-ul li:first-child").addClass("active");
  10. tabSelect.mechanicalSelect(e.childenList);
  11. };
  12. $(function(){
  13. var modules=JSON.parse(window.sessionStorage.getItem("modules"));
  14. for(var i = 0;i<window.treemap[10].childenList.length;i++){
  15. if(window.treemap[10].childenList[i].moduleName === '机械设备管理'){
  16. var treemap = window.treemap[10].childenList[i]
  17. }
  18. }
  19. // var treemap = {
  20. // moduleName:'机械设备管理',
  21. // moduleType:'pages/mechanical/index.html',
  22. // moduleUrl:'pages/mechanical/index.html',
  23. // childenList:[
  24. // {
  25. // moduleName:'机械设备库存明细',
  26. // moduleType:'inventoryDetail',
  27. // moduleUrl:'inventoryDetail',
  28. // },{
  29. // moduleName:'机械设备领用归还',
  30. // moduleType:'receiveInfo',
  31. // moduleUrl:'receiveInfo',
  32. // },{
  33. // moduleName:'机械设备维修保养',
  34. // moduleType:'jiXieSheBeiWeiXiu',
  35. // moduleUrl:'jiXieSheBeiWeiXiu',
  36. // },{
  37. // moduleName:'仓储设备维修保养',
  38. // moduleType:'cangChuWeiXiu',
  39. // moduleUrl:'cangChuWeiXiu',
  40. // },{
  41. // moduleName:'设备明细',
  42. // moduleType:'sheBeiMingXiZhang',
  43. // moduleUrl:'sheBeiMingXiZhang',
  44. // },{
  45. // moduleName:'设备点检记录',
  46. // moduleType:'sheBeiDianJian',
  47. // moduleUrl:'sheBeiDianJian',
  48. // },{
  49. // moduleName:'盘点单',
  50. // moduleType:'deviceCheckNew',
  51. // moduleUrl:'deviceCheckNew',
  52. // }
  53. // ]
  54. // }
  55. if(window.treemap){
  56. renderHeader(treemap);
  57. }else if(modules){
  58. renderHeader(treemap);
  59. }
  60. })
  61. var getGrainData = {};
  62. $.ajax({
  63. type: "get",
  64. dataType: 'json',
  65. async: false,
  66. url: config.baseUrl + config.organization.getAllGrainList,
  67. success: function(e) {
  68. getGrainData = e.data.data;
  69. },
  70. error: function(e) {
  71. console.log(e);
  72. }
  73. });
  74. </script>
  75. <div class="con-wrap" style="width:1180px">
  76. <div class="bif-nav">
  77. <ul id="bif-nav-ul">
  78. </ul>
  79. </div>
  80. <div id="con-map" class="main3" style="width:1180px">
  81. <div class="bif-container" >
  82. </div>
  83. </div>
  84. </div>
  85. <!--#include file="/inc/footer.html"-->
  86. <style>
  87. .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
  88. display: none
  89. }
  90. .hide {
  91. display: none;
  92. }
  93. .pic {
  94. width: 300px;
  95. }
  96. .bif-nav-item {
  97. /* width: 100px; */
  98. text-align: center;
  99. }
  100. .form-left {
  101. width: 500px;
  102. float: left;
  103. }
  104. .form-right {
  105. width: 200px;
  106. min-height: 150px;
  107. float: left;
  108. }
  109. .form-right .pic {
  110. border: 1px solid #ccc;
  111. float: left;
  112. width: 100%;
  113. min-height: 150px;
  114. background: #ccc;
  115. }
  116. #file {
  117. border-color: #ffa8a8;
  118. background-color: #F30000;
  119. color: #000;
  120. width: 100%;
  121. height: 20px;
  122. margin-top: 10px;
  123. }
  124. .pf-pitem-li {
  125. min-width: 100px;
  126. }
  127. </style>
  128. <script>
  129. $(function() {
  130. // mechanical.init();
  131. // base.renderwindow('#role-manage-addedit',
  132. // {
  133. // title: '更新角色组',
  134. // width: 700,
  135. // height: 500,
  136. // close:false
  137. // });
  138. });
  139. </script>
  140. </body>
  141. </html>