严智鑫
2023-12-15 ba374c90f7d8fef3fb87152fbd81d3467880fa7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<%@ 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">&times;</button>
 
                <p class="modal-title">
                    <span id="bg_title" style="font-weight: bolder; font-size: 25px"></span>
                        &nbsp;&nbsp;&nbsp;&nbsp;
                        <span id="wg_ps" style="font-weight: bolder; font-size: 18px"></span>
                        &nbsp;&nbsp;&nbsp;&nbsp;
                        
                </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>