index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.materialSelect(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/equipmentDevice/material/index.html',
  22. // moduleUrl:'pages/equipmentDevice/material/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:'AccessRecording',
  35. // moduleUrl:'AccessRecording',
  36. // },{
  37. // moduleName:'物资申请明细',
  38. // moduleType:'materialApplications',
  39. // moduleUrl:'materialApplications',
  40. // },{
  41. // moduleName:'物资采购清单',
  42. // moduleType:'materialApplications1',
  43. // moduleUrl:'materialApplications1',
  44. // },{
  45. // moduleName:'物资申请审批',
  46. // moduleType:'materialApplications2',
  47. // moduleUrl:'materialApplications2',
  48. // },{
  49. // moduleName:'物资月度盘点',
  50. // moduleType:'wuZiYueDuPanDian',
  51. // moduleUrl:'wuZiYueDuPanDian',
  52. // },{
  53. // moduleName:'盘点单',
  54. // moduleType:'deviceCheck',
  55. // moduleUrl:'deviceCheck',
  56. // }
  57. // ]
  58. // }
  59. if(window.treemap){
  60. renderHeader(treemap);
  61. }else if(modules){
  62. renderHeader(treemap);
  63. }
  64. })
  65. var getGrainData = {};
  66. $.ajax({
  67. type: "get",
  68. dataType: 'json',
  69. async: false,
  70. url: config.baseUrl + config.organization.getAllGrainList,
  71. success: function(e) {
  72. getGrainData = e.data.data;
  73. },
  74. error: function(e) {
  75. console.log(e);
  76. }
  77. });
  78. </script>
  79. <div class="con-wrap" style="width:1180px">
  80. <div class="bif-nav">
  81. <ul id="bif-nav-ul">
  82. </ul>
  83. </div>
  84. <div id="con-map" class="main3" style="width:1180px">
  85. <div class="bif-container">
  86. </div>
  87. </div>
  88. </div>
  89. <style>
  90. .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
  91. display: none
  92. }
  93. .hide {
  94. display: none;
  95. }
  96. .pic {
  97. width: 300px;
  98. }
  99. .bif-nav-item {
  100. /* width: 100px; */
  101. text-align: center;
  102. }
  103. .form-left {
  104. width: 500px;
  105. float: left;
  106. }
  107. .form-right {
  108. width: 200px;
  109. min-height: 150px;
  110. float: left;
  111. }
  112. .form-right .pic {
  113. border: 1px solid #ccc;
  114. float: left;
  115. width: 100%;
  116. min-height: 150px;
  117. background: #ccc;
  118. }
  119. #file {
  120. border-color: #ffa8a8;
  121. background-color: #F30000;
  122. color: #000;
  123. width: 100%;
  124. height: 20px;
  125. margin-top: 10px;
  126. }
  127. .pf-pitem-li {
  128. min-width: 100px;
  129. }
  130. </style>
  131. <script>
  132. // $(function() {
  133. // material.init();
  134. // });
  135. </script>
  136. </body>
  137. </html>