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
<%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" %>
</head>
<body onload="panelHid(0);" class="TabPanelBody">
<div id="loading" class="loading">
    <p class="loadingMsg">加载中、请稍候....</p>
    <iframe class="loadingIFRM"></iframe>
</div>
<div class="panelTopTitle">
    [?TopAndTitle]
</div>
<div id="scrollbody">
    <div id="scroller">
        <div id="tplt-container">
            <div id="tplt-grid" style="margin:10px;">
                <%@ include file="@gridJsp@" %>
            </div>
            <div id="tplt-panel" style="margin-left: 10px;">
                <%@ include file="panel.jsp" %>
            </div>
                <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
                [?ColorDescription]
        </div>
    </div>
</div>
</body>
<script type="text/javascript">
    create("<%=encodeWherePan%>", 1);
    window.onunload = function () {
        if (typeof (mygrid) != "undefined" && mygrid != null) {
            mygrid.refalshGridOfColse();
        }
    }
</script>
</html>
<% } catch (Exception e) {%>
<script type="text/javascript">
    alert("<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>");
</script>
<% }%>