xinyb
2022-05-20 f210acc76343eb8beb4f78bec5b5496b4c6bfe65
提交 | 用户 | age
d6f308 1 <%try {%>
X 2 <%@ page language="java" contentType="text/html; charset=UTF-8"
3          pageEncoding="UTF-8" %>
4 <%@ page trimDirectiveWhitespaces="true" %>
a6a76f 5 <%@ include file="dataHead.jsp" %>
F 6 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
7 <html>
8 <head>
d6f308 9     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
X 10     <META NAME="ROBOTS" CONTENT="NONE">
11     <title>[?title]</title>
12     <%@ include file="jsCssHead.jsp" %>
a6a76f 13 </head>
d6f308 14 <body class="TabPanelBody">
a6a76f 15 <div id="loading" class="loading">
d6f308 16     <p class="loadingMsg">加载中、请稍候....</p>
X 17     <iframe class="loadingIFRM"></iframe>
a6a76f 18 </div>
d6f308 19 <div class="panelTopTitle">
X 20     [?TopAndTitle]
21 </div>
22 <div id="scrollbody">
23     <div id="scroller">
24         <div id="tplt-container" style="[?height]">
25             <div id="tplt-panel">
26                 <%@ include file="panel.jsp" %>
27             </div>
28             <%if ("1".equals(isShowOnlineMsg)) {//isShowOnlineMsg定义在jsCssHead %>
29             <%
30                 request.setAttribute("formId", formId + "");
31                 request.setAttribute("docCode", doccode);
32             %>
33             <jsp:include page="/general/onlineMessage.jsp" flush="true"/>
34             <%
35                 }
36                 if ("1".equals(isShowProcessTracking)) {//isShowProcessTracking定义在jsCssHead
37             %>
38             <%@ include file="/general/processTrack.jsp" %>
39             <%} %>
f210ac 40             <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
X 41             [?ColorDescription]
d6f308 42         </div>
X 43     </div>
44 </div>
a6a76f 45 </body>
F 46 <script>
d6f308 47     reportsdiv(dj, panMain[panIndex].statueis);
X 48     window.onunload = function () {
49         if (typeof (mygrid) != "undefined" && mygrid != null) mygrid.refalshGridOfColse();
50         else
51             refalshGridOfColse();
52     }
a6a76f 53 </script>
d6f308 54 </html>
X 55 <%} catch (Exception e) {//out.print("<script>alert('"+e.getMessage().replace("'","\\'")+"');</script>");}%>
a6a76f 56 <script>
620728 57     let error = "<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>";
X 58     if (error != null) {
59         error = error.split(":");
59fa21 60         if (error.length > 1) {
42e8d3 61             error = error[error.length-1];
620728 62         }
X 63     }
64     top.$.messager.alert('提示信息', error, '', function (r) {
65         top.$("#home-tabs").tabs("close", top.parent.tabindex);
66     });
67     top.$('.panel-tool-close').hide();
a6a76f 68 </script>
d6f308 69 <% }%>