xinyb
2024-03-27 f87909326c2ff2c58da027163f64d9d8f9424b17
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
<%@ page import="com.yc.service.impl.DBHelper" %>
<%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 class="TabPanelBody">
<div class="selected-icon-container" style="display: none;">
    <div class="relative">
        <i class="icon-dot hide">0</i>
        <i class="iconfont icon-liebiao-open"></i>
    </div>
</div>
<!-- 选中记录弹窗 -->
<div class="selected-list-layer">
    <div class="selected-list-container hide">
        <header class="selected-list-header text-center">
        <span class="pointer">
          <i class="iconfont icon-liebiao-close absolute"></i>
        </span>
        </header>
        <div class="selected-list-container-content">
            <div class="selected-list-content selected-list-table">
                <div class="selected-list-table-container">
                    <div class="selected-list-table-content show">
                        <div class="selected-list-tbodyTitle" id="gridTitle"></div>
                        <div class="selected-list-tbody"></div>
                    </div>
                </div>
            </div>
 
        </div>
 
        <div class="text-center border-top padding-top-10">
            <button type="button" class="layui-btn layui-btn-confirm" id="btn-confirm">选好了</button>
            <button type="button" class="layui-btn layui-btn-confirm layui-btn-close" id="btn-close">关闭</button>
        </div>
 
    </div>
</div>
<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" style="[?height]">
            <div id="tplt-panel" style="margin-left: 10px;">
                <%
                    String customURL= DBHelper.getCustomURL(request,formId,formType,"panel.jsp");
                %>
                <jsp:include page="<%=customURL%>" flush="true"></jsp:include><%//改成兼容用户自定义控件布局的变量 xin 2024-1-12 16:14:05%>
            </div>
                <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
                [?ColorDescription]
        </div>
    </div>
</div>
</body>
<script>
    window.onunload = function () {
        if (typeof (mygrid) != "undefined" && mygrid != null) {
            mygrid.refalshGridOfColse();
        } else {
            refalshGridOfColse();
        }
    }
</script>
</html>
<%} catch (Exception e) {%>
<script>
    alert("<%=e.getCause()!=null?e.getCause().getMessage().replaceAll("\"","“"):e.getMessage().replaceAll("\"","“")%>");
</script>
<%}%>