fs-danaus
2022-08-05 4a551fc73bd4c86f43aa68c0aab8d1dbeae46836
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<%try {%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8" %>
<%@ page trimDirectiveWhitespaces="true" %>
<%@ include file="dataHead.jsp" %>
<!DOCTYPE html >
<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;
        }
    </style>
</head>
<body class="TabPanelBody">
<div id="loading" class="loading">
    <p class="loadingMsg">加载中、请稍候....</p>
    <iframe class="loadingIFRM"></iframe>
</div>
<div id="top20" class="easyui-layout" fit="true">
    <div id="h_all" class="easyui-layout" region="north" border="false" style="overflow: hidden;">
        <div region="north" class="easyui-north3" id="h_top" border="false"
             style="width:100%;overflow: hidden;border-bottom: 1px solid #99BBE8;">
            <div class="panelTopTitle">
                <%@ include file="top.jsp" %>
            </div>
        </div>
        <div region="center" class="easyui-north" border="false" style="width:100%;padding-top:1px;overflow: hidden;">
            <%@ include file="panel.jsp" %>
        </div>
    </div>
    <div region="west" border="true" split="true" style="width:300px;border-left:0px;border-bottom:0px;">
        <%@ include file="tree.jsp" %>
    </div>
    <div region="center" border="true" id="tplt-panels" style="border-right:0px;border-bottom:0px;">
        <div class="easyui-layout" fit="true">
            <div region="north" id="tplt-panel" style="overflow: hidden;border:none;">
                <%@ include file="panelR.jsp" %>
            </div>
            <div region="center" style="border:none;">
                <%@ include file="@gridJsp@" %>
            </div>
                <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
                [?ColorDescription]
        </div>
    </div>
    <div region="south" split="false"
         style="height:30px;background:#efefef;border-right:0px;border-bottom:0px;border-left:0px;">
        <div style="margin-top:5px;">
                <span style="position: relative;top: 3px;">
                <input type="radio" onchange="querys()" value="0" id="isDrag1" name="classFilter">
                </span>
            <label for="isDrag1" style="cursor: pointer;">当前类</label>
 
            <span style="position: relative;top: 3px;">
                <input type="radio" onchange="querys()" id="isDrag2" name="classFilter" value="1" checked="checked">
                </span>
            <label for="isDrag2" style="cursor: pointer;">含子类</label>
 
            <span style="position: relative;top: 3px;">
                <input type="radio" onchange="querys()" id="isDrag3" value="2" name="classFilter">
                </span>
            <label for="isDrag3" style="cursor: pointer;">所有</label>
 
            <span style="position: relative;top: 3px;">
                <input type="radio" onchange="querys()" id="isDrag4" value="3" name="classFilter">
                </span>
            <label for="isDrag4" style="cursor: pointer;">不含</label>
        </div>
    </div>
</div>
<%@ include file="foolter.jsp" %>
<script type="text/javascript">
    topPan.ref();
</script>
</body>
<script>
    window.onunload = function () {
        if (typeof (mygrid) != "undefined" && mygrid != null) mygrid.refalshGridOfColse();
        else
            refalshGridOfColse();
    }
</script>
</html>
<%} catch (Exception e) {//out.print("<script>alert('"+e.getMessage().replace("'","\\'")+"');</script>");}%>
<script>
    alert("<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>");
</script>
<% }%>