xinyb
2022-05-18 c2dc593c9b8948718381f3a2996b6f94a59ad80a
提交 | 用户 | 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 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
F 6 <html>
7 <head>
d6f308 8     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
X 9     <META NAME="ROBOTS" CONTENT="NONE">
10     <title>选择部门审核人(主树-从树-从表)</title>
11     <%
12         //是否为超级管理员  1 为超级管理员
13         String isSuperUser = (String) session.getAttribute(SessionKey.SUPPER_USER);
14     %>
15     <%@ include file="jsCssHead.jsp" %>
16     <style type="text/css">
17         html, body {
18             width: 100%;
19             height: 100%;
20             margin: 0px;
21             padding: 0px;
22         }
23     </style>
a6a76f 24 </head>
d6f308 25 <body class="TabPanelBody">
a6a76f 26 <div id="loading" class="loading">
d6f308 27     <p class="loadingMsg">加载中、请稍候....</p>
X 28     <iframe class="loadingIFRM"></iframe>
a6a76f 29 </div>
d6f308 30 <div class="easyui-layout" fit="true">
X 31     <div region="north" border="false" style="height:30px;overflow: hidden;">
32         <div id="tool">
33             <a href="javascript:void(0);" onclick="refresh();" class="easyui-linkbutton" plain="true"
34                iconCls="icon-reload">刷新</a>
35         </div>
36     </div>
37     <div region="west" border="true" split="true" style="width:220px;">
38         <div id="wrapper">
39             <div id="scroller">
40                 <ul class="simpleTree" id="tree1" style="margin-top:10px;margin-left:5px;">
41                     <li class="root" id='YCroot'>
42                         <ul id="firstNode">
43                             <!-- 由于修改了bug此处ID必须为firstNode -->
44
45                         </ul>
46                     </li>
47                 </ul>
48             </div>
49         </div>
50     </div>
51     <div region="center" id="tplt-panels" split="true" border="true" style="overflow: hidden;">
52         <div class="easyui-layout" fit="true">
53             <div region="west" style="width:180px;" split="true">
54                 <ul class="simpleTree" id="tree2" style="margin-top:10px;margin-left:5px;">
55                     <li class="root" id='YCroot'>
56                         <ul id="firstNode">
57                             <!-- 由于修改了bug此处ID必须为firstNode -->
58                         </ul>
59                     </li>
60                 </ul>
61             </div>
62             <div region="center">
63                 <%@ include file="@gridJsp@" %>
c2dc59 64                 <div class="colorDescription">
X 65                     <%//文字颜色说明显示位置 xin 2022-5-16 14:45:39%>
66                     [?ColorDescription]
67                 </div>
d6f308 68                 <script type="text/javascript">
X 69                     create("");
70                 </script>
71             </div>
72         </div>
73     </div>
a6a76f 74 </div>
F 75 </body>
76 <script>
d6f308 77     window.onunload = function () {
X 78         if (typeof (mygrid) != "undefined" && mygrid != null) mygrid.refalshGridOfColse();
79         else
80             refalshGridOfColse();
81     }
a6a76f 82 </script>
d6f308 83 </html>
X 84 <%} catch (Exception e) {//out.print("<script>alert('"+e.getMessage().replace("'","\\'")+"');</script>");}%>
a6a76f 85 <script>
d6f308 86     alert("<%=e.getCause()!=null?e.getCause().getMessage():e.getMessage()%>");
a6a76f 87 </script>
d6f308 88 <% }%>