<%@ page language="java" contentType="text/html; charset=UTF-8" 
 | 
    pageEncoding="UTF-8"%> 
 | 
    <%@ include file="../../include/core.jsp" %> 
 | 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
 | 
<html> 
 | 
<head> 
 | 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
 | 
<title></title> 
 | 
  
 | 
<script type="text/javascript" src="${path }/jsFiles/viewLocMap.js"></script> 
 | 
<style type="text/css"> 
 | 
.modal-dialog {  
 | 
    position: absolute;  
 | 
    top: 0;  
 | 
    bottom: 0;  
 | 
    left: 0;  
 | 
    right: 0;  
 | 
}  
 | 
  
 | 
.modal-content {  
 | 
    /*overflow-y: scroll; */  
 | 
    position: absolute;  
 | 
    top: 0;  
 | 
    bottom: 0;  
 | 
    height :75%; 
 | 
    width: 100%;  
 | 
}  
 | 
  
 | 
.modal-body { 
 | 
    overflow-y: scroll;  
 | 
    position: absolute;  
 | 
    top: 55px;      
 | 
    bottom: 65px;   
 | 
    width: 100%;  
 | 
}  
 | 
  
 | 
.modal-header .close {margin-right: 15px;}  
 | 
  
 | 
.modal-footer { 
 | 
    position: absolute;  
 | 
    width: 100%;  
 | 
    bottom: 0;  
 | 
} 
 | 
</style> 
 | 
</head> 
 | 
<body> 
 | 
  
 | 
<!-- search --> 
 | 
<div class="panel panel-default"> 
 | 
    <div class="panel-body"> 
 | 
        <form id="conForm" class="form-inline"> 
 | 
<!--             <input type="text" class="form-control" style="width:10%" id="row1" name="row1" placeholder="钢架号"> --> 
 | 
            <select class="form-control form-control-static" style="width:20% " name="row1" id="row1"></select> 
 | 
            <button type="button" onclick="getByCon()" class="btn btn-info "> 
 | 
           <span class="glyphicon glyphicon-search" aria-hidden="true" >  搜索</span></button> 
 | 
        </form> 
 | 
    </div> 
 | 
</div> 
 | 
  
 | 
<div class="table-responsive"> 
 | 
<table id="test-table" class="table table-hover table-striped table-condensed table-bordered"></table> 
 | 
</div> 
 | 
  
 | 
<!--toolbar  --> 
 | 
<!-- <div id="toolbar" class="btn-toolbar"> --> 
 | 
<!--     <button onclick="ExportExcel()" type="button" class="btn btn-success"> --> 
 | 
<!--       <span class="glyphicon glyphicon-paste" aria-hidden="true" >导出</span> --> 
 | 
<!--     </button> --> 
 | 
<!-- </div> --> 
 | 
  
 | 
<!-- 模态框(Modal) --> 
 | 
<!-- 修改 --> 
 | 
<div id="mydlg" class="modal fade"  tabindex="-1" role="dialog" data-backdrop="static" data-keyboard="false" aria-labelledby="myModalLabel" aria-hidden="true"> 
 | 
    <div class="modal-dialog" style="width:100%;"> 
 | 
        <div class="modal-content"> 
 | 
            <div class="modal-header"> 
 | 
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> 
 | 
                <h4 class="modal-title" id="myModalLabel">查看</h4> 
 | 
            </div> 
 | 
             
 | 
            <div class="modal-body"> 
 | 
            <form class="form-horizontal" id="myform"  method="post"> 
 | 
             
 | 
            <div class="form-group"> 
 | 
            <label class="col-md-3 control-label">库位号:</label> 
 | 
            <div class="col-md-6 "> 
 | 
            <input type="text" readonly="readonly" id="loc_no1" name="loc_no" > 
 | 
            </div> 
 | 
            </div> 
 | 
             
 | 
            <input type="hidden" id="detail_loc_no" name="detail_loc_no"> 
 | 
            <div class="table-responsive"> 
 | 
                <table id="loc_detail" class="table table-hover text-nowrap"></table> 
 | 
            </div> 
 | 
<!--             <table id="loc_detail" class="table table-hover table-striped table-condensed table-bordered"></table> --> 
 | 
             
 | 
                <input type="reset" name="reset" style="display: none;" />             
 | 
            </form> 
 | 
            </div> 
 | 
             
 | 
            <div class="modal-footer"> 
 | 
            <!--用来清空表单数据-->             
 | 
                <button type="button" class="btn btn-default" onclick="closedlg()">关闭</button> 
 | 
<!--                <button type="button" onclick="upStation()" class="btn btn-primary">保存</button> --> 
 | 
            </div> 
 | 
             
 | 
        </div><!-- /.modal-content --> 
 | 
    </div><!-- /.modal --> 
 | 
</div> 
 | 
  
 | 
</body> 
 | 
</html> 
 |