xinyb_
2021-04-13 d6f308bcc9294585b44142a0a18b481cea08f77e
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8" %>
<%@ page trimDirectiveWhitespaces="true" %>
<%@ include file="dataHead.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <META NAME="ROBOTS" CONTENT="NONE">
 
    <title>[?title]</title>
    <%@ include file="jsCssHead.jsp" %>
    <style type="text/css">
        html, body {
            width: 100%;
            height: 100%;
            margin: 0px;
            padding: 0px;
            overflow: hidden;
        }
    </style>
</head>
<body class="TabPanelBody">
<div class="easyui-layout" fit="true" style="overflow: hidden;">
    <div id="h_all" region="north" border="false" style="width:100%;border-bottom: 1px solid #99BBE8;overflow: hidden;">
        <div class="panelTopTitle">
            <%@ include file="top.jsp" %>
        </div>
    </div>
    <div region="west" border="true" split="true" style="width:300px;border-left:0px;border-bottom:0px;border-top:0px;">
        <div id="wrapper">
            <div id="scroller">
                <div style="margin-top: 5px; margin-left: 5px;">
                    <ul id="tree1" class="simpleTree">
                        <li class="root" id='YCroot'>
                            <ul id="firstNode">
                                <!-- 由于修改了bug此处ID必须为firstNode -->
 
                            </ul>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </div>
    <div region="center" id="tplt-panels" border="true"
         style="border-right:0px;border-bottom:0px;border-top:0px;overflow: hidden;">
        <div class="easyui-layout" fit="true">
            <div region="center" border="false">
                <%@ include file="tree.jsp" %>
            </div>
            <div region="south" border="false" style="height:200px;border-top: 1px solid #99BBE8;">
                <%@ include file="@gridJsp@" %>
                <script type="text/javascript">
                    create("");
                </script>
            </div>
        </div>
    </div>
</div>
</body>
<script>
    window.onunload = function () {
        if (typeof (mygrid) != "undefined" && mygrid != null) mygrid.refalshGridOfColse();
        else
            refalshGridOfColse();
    }
</script>
</html>