<%@ page language="java" pageEncoding="UTF-8"%>
|
<!-- 大屏放大 -->
|
<div class="modal fade" id="baogong_info" tabindex="-1" role="dialog"
|
aria-labelledby="myModalLabel" aria-hidden="true"
|
style="overflow-y: auto; height: 99%">
|
<div class="modal-dialog" style="width: 80%; height: 100%">
|
<div class="modal-content" style="height: 800px">
|
<div class="modal-header">
|
<button type="button" class="close" data-dismiss="modal"
|
aria-hidden="true" data-backdrop="static">×</button>
|
|
<p class="modal-title">
|
<span id="bg_title" style="font-weight: bolder; font-size: 25px"></span>
|
|
<span id="wg_ps" style="font-weight: bolder; font-size: 18px"></span>
|
|
|
</p>
|
|
</div>
|
|
<div class="modal-body">
|
<%@ include file="/WEB-INF/views/mes/view/DP_yuanpiankucun.jsp"%>
|
</div>
|
<div class="modal-footer"></div>
|
</div>
|
</div>
|
</div>
|
|
<!-- 原片详情 -->
|
<script>
|
document.getElementById("main1").onclick=function() {
|
|
var b=document.getElementById("bg_detail");
|
var h=document.getElementById("Blowup");//清空弹窗
|
if(h!='null'&&h!=null){
|
b.removeChild(h);
|
}
|
/* var y=document.getElementById("main1-1");//需要复制元素
|
var node=y.cloneNode(true); //复制元素
|
node.setAttribute('id','Blowup'); //修改复制体id
|
//node.setAttribute('style','zoom:5');
|
b.appendChild(node); */
|
$("#baogong_info").modal('toggle');
|
|
|
|
}
|
|
</script>
|