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">
- <%@ include file="../../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/gkjygl/gkjyr/jyrxkzfz/xkzfzdetail.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 () {
- xkzfz.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.ssjyrzw }
- </td>
- </tr>
- <tr>
- <th>主证编号: </th>
- <td >
- ${record.gkjyxkz }
- </td>
- <th>证书编号: </th>
- <td >
- ${record.fzsqh }
- </td>
- </tr>
- <tr>
- <th>作业危险货物名称: </th>
- <td >
- ${record.wxhwpm }
- </td>
- <th>作业方式: </th>
- <td >
- ${record.zyfs }
- </td>
- </tr>
- <tr>
- <th>作业区域范围: </th>
- <td colspan="3">
-
- <c:forEach items="${listgk}" var="listgk">
- <c:if test="${listgk.id==record.szgk }">${listgk.gkmc}</c:if>
- </c:forEach>
- <c:forEach items="${listgq}" var="listgq">
- <c:if test="${listgq.id==record.szgq }">${listgq.gqmc}</c:if>
- </c:forEach>
- ${record.ssjyrzw }
- <c:forEach items="${listZycs}" var="listZycs">
- <c:if test="${listZycs.id==record.zycs }">${listZycs.text}</c:if>
- </c:forEach>
- (${record.qynbmc})
- </td>
- </tr>
- <tr>
- <th>发证日期: </th>
- <td >
- ${record.yxqkssjfmt }
- </td>
- <th>有效日期: </th>
- <td >
- ${record.yxqjssjfmt }
- </td>
- </tr>
- <tr>
- <th>发证机关: </th>
- <td >
- ${record.fzjg }
- </td>
- <th>证书状态: </th>
- <td >
- <c:if test="${record.recordStatus==1}">有效</c:if>
- </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}/xkzfz/getFileList?szd=${record.szd}+&szgq=${record.szgq}+&ssjyr=${record.ssjyr}+&flag=${flag}" onerror="this.src='${app }/static/biz/image/notfind.png'"
- onclick="xkzfz.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="xkzfz.detail.hide(${flag})">
- <img src="${app}/xkzfz/getFileList?szd=${record.szd}+&szgq=${record.szgq}+&ssjyr=${record.ssjyr}+&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}/xkzfz/getTwoCode?id=${record.id}" onerror="this.src='${app }/static/biz/image/notfind.png'"
- onclick="xkzfz.detail.showTwoCode(${flag})" title="二维扫码"/>
- <div id="dvTwoCode" class="dvs" title="点击关闭" onclick="xkzfz.detail.hideTwoCode()">
- <span><img id="" src="${app}/xkzfz/getTwoCode?id=${record.id}" onerror="this.src='${app }/static/biz/image/notfind.png'"/></span>
- </div>
- </td>
- </tr>
- </table>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="xkzfz.detail.back()">
- <i class="glyphicon glyphicon-arrow-left"></i>返回
- </a>
- </div>
- </div>
- </div>
- </div>
-
- </body>
- </html>
|