1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <div class="theme-popover" id="jyrselectdiv" style="width: 700px;overflow-y:auto;overflow-x:hidden; ">
- <div class="theme-poptit">
- <div class="popTitle">
- <h4>选择</h4>
- </div>
- <div class="close">
- <a href="#" title="关闭" onclick="guanbipop()" >×</a>
- </div>
- </div>
-
- <div style="background-color:#f4f4f4; ">
- <table class="search_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="20%"></th>
- </tr>
- <tr>
- <td class="right" style="width:15%">
- 单位名称 :
- </td>
- <td>
- <input type="text" class="form-control" id="gkjyrmc" >
- </td>
- <td class="right">
- </td>
- <td class="right" colspan="2">
- <a class="btn btn-default btn-sm" href="#" onclick="jyrselpop('jyrSel')">
- <i class="glyphicon glyphicon-search"></i>
- 查询</a>
- </td>
- </tr>
- </table>
- </div>
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="20%">序号</th>
- <th width="60%">单位名称</th>
- <th width="20%">操作</th>
- </tr>
- <tbody id="jyr">
-
- </tbody>
- </table>
- <!-- 分页处 -->
- <jsp:include page="pageinfoforjyr.jsp"></jsp:include>
- </div>
- </div>
- <div class="theme-popover-mask" id="jyrselectmaskdiv"></div>
|