123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!--#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.materialSelect(e.childenList);
- };
- $(function(){
- var modules=JSON.parse(window.sessionStorage.getItem("modules"));
- for(var i = 0;i<window.treemap[10].childenList.length;i++){
- if(window.treemap[10].childenList[i].moduleName === '物资器材管理'){
- var treemap = window.treemap[10].childenList[i]
- }
- }
- // var treemap = {
- // moduleName:'物资器材管理',
- // moduleType:'pages/equipmentDevice/material/index.html',
- // moduleUrl:'pages/equipmentDevice/material/index.html',
- // childenList:[
- // {
- // moduleName:'物资器材库存明细',
- // moduleType:'inventoryDetail',
- // moduleUrl:'inventoryDetail',
- // },{
- // moduleName:'物资器材领用',
- // moduleType:'receiveInfo',
- // moduleUrl:'receiveInfo',
- // },{
- // moduleName:'物资保管总账',
- // moduleType:'AccessRecording',
- // moduleUrl:'AccessRecording',
- // },{
- // moduleName:'物资申请明细',
- // moduleType:'materialApplications',
- // moduleUrl:'materialApplications',
- // },{
- // moduleName:'物资采购清单',
- // moduleType:'materialApplications1',
- // moduleUrl:'materialApplications1',
- // },{
- // moduleName:'物资申请审批',
- // moduleType:'materialApplications2',
- // moduleUrl:'materialApplications2',
- // },{
- // moduleName:'物资月度盘点',
- // moduleType:'wuZiYueDuPanDian',
- // moduleUrl:'wuZiYueDuPanDian',
- // },{
- // moduleName:'盘点单',
- // moduleType:'deviceCheck',
- // moduleUrl:'deviceCheck',
- // }
- // ]
- // }
- if(window.treemap){
- renderHeader(treemap);
- }else if(modules){
- renderHeader(treemap);
- }
- })
- var getGrainData = {};
- $.ajax({
- type: "get",
- dataType: 'json',
- async: false,
- url: config.baseUrl + config.organization.getAllGrainList,
- success: function(e) {
- getGrainData = e.data.data;
- },
- error: function(e) {
- console.log(e);
- }
- });
- </script>
- <div class="con-wrap" style="width:1180px">
- <div class="bif-nav">
- <ul id="bif-nav-ul">
-
- </ul>
- </div>
- <div id="con-map" class="main3" style="width:1180px">
- <div class="bif-container">
- </div>
- </div>
- </div>
- <style>
- .tool-wrap,.logo-wrap,.nav-wrap,.bottom-wrap{
- display: none
- }
- .hide {
- display: none;
- }
- .pic {
- width: 300px;
- }
- .bif-nav-item {
- /* width: 100px; */
- text-align: center;
- }
- .form-left {
- width: 500px;
- float: left;
- }
- .form-right {
- width: 200px;
- min-height: 150px;
- float: left;
- }
- .form-right .pic {
- border: 1px solid #ccc;
- float: left;
- width: 100%;
- min-height: 150px;
- background: #ccc;
- }
- #file {
- border-color: #ffa8a8;
- background-color: #F30000;
- color: #000;
- width: 100%;
- height: 20px;
- margin-top: 10px;
- }
- .pf-pitem-li {
- min-width: 100px;
- }
- </style>
- <script>
- // $(function() {
- // material.init();
- // });
- </script>
- </body>
- </html>
|