123456789101112131415161718192021222324252627282930313233343536 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <div class="theme-popover" id="mapdiv" style="top:2%;left:50%;margin-left:-400px; width: 800px;height: 540px;overflow-y:auto;overflow-x:hidden; ">
- <input type="hidden" id="mapflag" value="0">
- <div class="theme-poptit">
- <div class="popTitle">
- <h4>地图信息</h4>
- </div>
- <div class="close">
- <a href="#" title="关闭" onclick="guanbipopmap()" >×</a>
- </div>
- </div>
-
- <div style="display:inline;">
- <div id="spDiv" style="display:none;">
- <table style="margin:15px auto 0 auto;text-align:center;">
- <tr>
- <td>审批意见</td>
- </tr>
- <tr>
- <td><textarea id="audit" rows="3" cols="40"></textarea></td>
- </tr>
- </table>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" id="approve">
- <i class="glyphicon glyphicon-floppy-disk"></i>通过
- </a>
- <a class="btn btn-default btn-sm" href="#" id="reject">
- <i class="glyphicon glyphicon-floppy-disk"></i>不通过
- </a>
- </div>
- </div>
- <iframe id="mapiframe" style="float:left;" width="100%" height="500px" frameborder='no' border='0' src=''></iframe>
- </div>
- </div>
- <div class="theme-popover-mask" id="mapdivmask"></div>
|