index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. };
  11. $(function(){
  12. var modules=JSON.parse(window.sessionStorage.getItem("modules"));
  13. // var treemap = window.treemap[20].childenList[1]
  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/basedata/index.html',
  22. // moduleUrl:'pages/basedata/index.html',
  23. // childenList:[
  24. // {
  25. // moduleName:'基础参数管理',
  26. // moduleType:'jichu',
  27. // moduleUrl:'jichu',
  28. // },{
  29. // moduleName:'阀值参数管理',
  30. // moduleType:'threshold',
  31. // moduleUrl:'threshold',
  32. // },
  33. // // {
  34. // // moduleName:'考核类参数管理',
  35. // // moduleType:'',
  36. // // moduleUrl:'/pages/basedata/checkRule.html',
  37. // // },
  38. // // {
  39. // // moduleName:'规则生成',
  40. // // moduleType:'',
  41. // // moduleUrl:'/pages/basedata/checkRule.html',
  42. // // },
  43. // // {
  44. // // moduleName:'巡查点管理',
  45. // // moduleType:'',
  46. // // moduleUrl:'/pages/basedata/checkpoint.html',
  47. // // }
  48. // ]
  49. // }
  50. renderHeader(treemap);
  51. })
  52. </script>
  53. <div class="con-wrap" style="width:1180px">
  54. <div class="bif-nav">
  55. <ul id="bif-nav-ul">
  56. </ul>
  57. </div>
  58. <div id="con-map" class="main3" style="width:1180px">
  59. <div class="bif-container" >
  60. </div>
  61. </div>
  62. </div>
  63. <div class="easyui-window rgm-w role-manage-addedit" id="role-manage-addedit" data-options="closed:true" style="padding: 10px;width:700px;height: 500px;">
  64. <form class="role-form">
  65. <input type="easyui-textbox" style="display: none;" name="id">&emsp;&emsp;
  66. 角色组名:<input type="easyui-textbox easyui-validatebox name" name="name" id="role-name" data-options="validType:'length[0,20]'">&emsp;&emsp;
  67. 备注: <input type="easyui-textbox easyui-validatebox remark" name="remark" id="role-remark" data-options="validType:'length[0,20]'">
  68. </form>
  69. <br />
  70. <ul id="rgm-tree" class="easyui-tree" style="margin: 10px 0;"></ul>
  71. <button type="button" href="#" class="easyui-linkbutton bd-add-s bd-win-y " plain="true">确定</button>
  72. </div>
  73. <!--#include file="/inc/footer.html"-->
  74. <style>
  75. .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
  76. display: none
  77. }
  78. .hide {
  79. display: none;
  80. }
  81. .pic {
  82. width: 300px;
  83. }
  84. .bif-nav-item {
  85. /* width: 100px; */
  86. text-align: center;
  87. }
  88. .form-left {
  89. width: 500px;
  90. float: left;
  91. }
  92. .form-right {
  93. width: 200px;
  94. min-height: 150px;
  95. float: left;
  96. }
  97. .form-right .pic {
  98. border: 1px solid #ccc;
  99. float: left;
  100. width: 100%;
  101. min-height: 150px;
  102. background: #ccc;
  103. }
  104. #file {
  105. border-color: #ffa8a8;
  106. background-color: #F30000;
  107. color: #000;
  108. width: 100%;
  109. height: 20px;
  110. margin-top: 10px;
  111. }
  112. .pf-pitem-li {
  113. min-width: 100px;
  114. }
  115. </style>
  116. <script>
  117. $(function() {
  118. basedata1.init();
  119. // base.renderwindow('#role-manage-addedit',
  120. // {
  121. // title: '更新角色组',
  122. // width: 700,
  123. // height: 500,
  124. // close:false
  125. // });
  126. });
  127. </script>
  128. </body>
  129. </html>