| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 | <%@ page language="java" contentType="text/html; charset=UTF-8"	pageEncoding="UTF-8"%><!DOCTYPE html><html lang="en"><head>    <meta charset="utf-8">    <title>江苏省港口建设与经营管理信息系统</title>    <meta name="viewport" content="width=device-width, initial-scale=1">	<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>    <%@ include file="../../../common.jsp"%>	<script type="text/javascript" src="${app }/static/biz/js/gkjygl/gkjyr/xkzxx/xkzxxdetail.js"></script></head><style type="text/css">	 .dvs {	 	display: none;	 	position:absolute;	    width: 90%;	    height: 90%;	 	z-index:100;	 }	 .dvs img{	 	display: block;	    width: 90%;	    height: 90%;	 }	 .dvs span img{	 	display: block;	 	margin-top: 15%;	    margin-left: 30%;	    width: 150px;	    height: 150px;	 }	 #overlay {	    background: #000;	    filter: alpha(opacity=70); /* IE的透明度 */	    opacity: 0.7;  /* 透明度 */	    position: fixed;	    top: 0px;	    left: 0px;	    width: 100%;	    height: 100%;	    z-index: 50; /* 此处的图层要大于页面 */	    display:none;	}	</style>	<script type="text/javascript">		$(document).ready(function () {			xkzxx.detail.path='${path}';			iFrameHeightIframe('${menuid}');//自适应高度		});			</script><body><div id="overlay"></div>	<div class="box" >		<div class="box-content" >			<div class="apply_fill">				<table class="apply" cellpadding="0" cellspacing="0">					<tr>						<th>公司名称: </th>						<td colspan="3">                        	${record.gkjyrzw }                        </td>                        					</tr>					<tr>					<th>法定代表人: </th>						<td colspan="3">							${record.fddbr }						</td>					</tr>					<tr>					<th>办公地址: </th>						<td colspan="3">							${record.dz }						</td>					</tr>					<tr >						<th>经营地域: </th>						<td colspan="3">							${record.cq }						</td>					</tr>					<tr>						<th>经营范围: </th>						<td colspan="3">							${record.zyqyfw }						</td>					</tr>					<tr>					<th>许可证编号: </th>					<td >						${record.gkjyxkzh }					</td>					<th>发证机关: </th>					<td >						${record.fzjg }					</td>					</tr>					<tr>						<th>有效期起: </th>						<td >							<fmt:formatDate value='${record.yxqq }' pattern="yyyy-MM-dd" type="date" dateStyle="long" />						</td>						<th>有效期至: </th>						<td >							<fmt:formatDate value='${record.yxqz }' pattern="yyyy-MM-dd" type="date" dateStyle="long" />						</td>					</tr>					<tr>						<th>发证日期: </th>						<td>							<fmt:formatDate value='${record.fzrq }' pattern="yyyy-MM-dd" type="date" dateStyle="long" />						</td>					</tr>					<tr>						<th>许可证电子扫描件: </th>						<td >						<%for(int i=0;i<2;i++){						request.setAttribute("flag",i);						%>						<img hspace="2" vspace="2" border="1" align="middle" height="30" width="30" src="${app}/xkzxx/getFileList?xkzid=${record.id}&flag=${flag}" onerror="this.src='${app }/static/biz/image/notfind.png'" 						onclick="xkzxx.detail.show(${flag})" <c:if test="${flag == 0 }">title="正面"</c:if> <c:if test="${flag == 1 }">title="反面"</c:if>/>						<div id="dv${flag}" title="点击关闭" class="dvs" onclick="xkzxx.detail.hide(${flag})">							<img src="${app}/xkzxx/getFileList?xkzid=${record.id }&flag=${flag}" onerror="this.src='${app }/static/biz/image/notfind.png'"/>						</div>						<%} %>						<img hspace="2" vspace="2" border="1" align="middle" height="30" width="30" src="${app}/xkzxx/getTwoCode?id=${record.id}" onerror="this.src='${app }/static/biz/image/notfind.png'" 						onclick="xkzxx.detail.showTwoCode(${flag})" title="二维扫码"/>						<div id="dvTwoCode" class="dvs" title="点击关闭"  onclick="xkzxx.detail.hideTwoCode()">							<span><img id="" src="${app}/xkzxx/getTwoCode?id=${record.id}" onerror="this.src='${app }/static/biz/image/notfind.png'"/></span>						</div>						<!--a class="btn btn-default btn-sm" href="#"  onclick="xkzxx.detail.preview('${record.id}')">							<i class="glyphicon glyphicon-search"></i>预览						</a-->						<!--div id="previewDiv" class="dvs" title="点击关闭" style="width:1043px;height:736px;" onclick="xkzxx.detail.hidePreview()">							<img id="" src="${app}/xkzxx/preview?id=${record.id}" onerror="this.src='${app }/static/biz/image/notfind.png'"/>						</div-->						</td>					</tr>				</table>				<div  id="buttons">					<a class="btn btn-default btn-sm" href="#"  onclick="xkzxx.detail.back()">						<i class="glyphicon glyphicon-arrow-left"></i>返回					</a>         		</div>			</div>		</div>	</div></body></html>
 |