archive_user_dept.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="com.redmoon.oa.dept.*" %>
  3. <%@ page import="cn.js.fan.util.*" %>
  4. <%@ page import = "com.redmoon.oa.person.*"%>
  5. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <LINK href="../common.css" type="text/css" rel="stylesheet">
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>选择模板-菜单</title>
  11. <script>
  12. function findObj(theObj, theDoc)
  13. {
  14.   var p, i, foundObj;
  15.   
  16.   if(!theDoc) theDoc = document;
  17.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  18.   {
  19.     theDoc = parent.frames[theObj.substring(p+1)].document;
  20.     theObj = theObj.substring(0,p);
  21.   }
  22.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  23.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  24.     foundObj = theDoc.forms[i][theObj];
  25.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  26.     foundObj = findObj(theObj,theDoc.layers[i].document);
  27.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  28.   
  29.   return foundObj;
  30. }
  31. function ShowChild(imgobj, name)
  32. {
  33. var tableobj = findObj("childof"+name);
  34. if (tableobj.style.display=="none")
  35. {
  36. tableobj.style.display = "";
  37. if (imgobj.src.indexOf("i_puls-root-1.gif")!=-1)
  38. imgobj.src = "images/i_puls-root.gif";
  39. if (imgobj.src.indexOf("i_plus-1-1.gif")!=-1)
  40. imgobj.src = "images/i_plus2-2.gif";
  41. if (imgobj.src.indexOf("i_plus-1.gif")!=-1)
  42. imgobj.src = "images/i_plus2-1.gif";
  43. }
  44. else
  45. {
  46. tableobj.style.display = "none";
  47. if (imgobj.src.indexOf("i_puls-root.gif")!=-1)
  48. imgobj.src = "images/i_puls-root-1.gif";
  49. if (imgobj.src.indexOf("i_plus2-2.gif")!=-1)
  50. imgobj.src = "images/i_plus-1-1.gif";
  51. if (imgobj.src.indexOf("i_plus2-1.gif")!=-1)
  52. imgobj.src = "images/i_plus-1.gif";
  53. }
  54. }
  55. function window_onload(depts) {
  56.    try {
  57.    var depts = depts;    
  58.    if (depts!="") {
  59.    var ary = depts.split(",");
  60.    var isFinded = true;
  61.        isFinded = false;
  62.    var len = document.all.tags('A').length;
  63.    for(var i=0; i<len; i++) {
  64.     try {
  65. var aObj = document.all.tags('A')[i];
  66. var canSel = false;
  67. for (var j=0; j<ary.length; j++) {
  68.     if (aObj.outerHTML.split("=")[2].split(""")[0] == ary[j]) {
  69. //if (aObj.outerHTML.indexOf("=" + ary[j])!=-1) {
  70. canSel = true;
  71. //alert(canSel);
  72. break;
  73. }
  74. }
  75. if (!canSel) {
  76. // aObj.innerHTML = "<font color='#888888'>" + aObj.innerText + "</font>";
  77. aObj.outerHTML = "<a onClick=><font color='#888888'>" + aObj.innerText + "</font></a>"; 
  78. // aObj.outerHTML.replace(/onClick/gi, "''");
  79. }
  80. isFinded = true;
  81. }
  82. catch (e) {}
  83.    }
  84.    }
  85.    else{
  86.        var len = document.all.tags('A').length;
  87.    for(var i=0; i<len; i++) {
  88.        var aObj = document.all.tags('A')[i];
  89.    aObj.outerHTML = "<a onClick=><font color='#888888'>" + aObj.innerText + "</font></a>";
  90.    }   
  91.    }
  92.    }
  93.    catch (e) {}
  94. }
  95. </script>
  96. </head>
  97. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  98. <%
  99. String operator = privilege.getUser(request);
  100. UserDb ud = new UserDb();
  101. ud = ud.getUserDb(operator);
  102. String[] depts = ud.getAdminDepts();
  103. String strDepts = "";
  104. if (depts!=null) {
  105. int len = depts.length;
  106. for (int i=0; i<len; i++) {
  107.    strDepts += depts[i];
  108.    if(i < len - 1){
  109.    strDepts += ",";
  110.    }
  111. }
  112. }
  113. %>
  114. <body onLoad="window_onload('<%=strDepts%>')" style="background-image:url()">
  115. <table width="100%"  border="0">
  116.   <tr>
  117.     <td align="left">&nbsp;请选择部门</td>
  118.   </tr>
  119. </table>
  120. <table width="100%"  border="0">
  121.   <tr>
  122.     <td width="5" align="left">&nbsp;</td>
  123.   <td align="left">
  124. <%
  125. DeptMgr dm = new DeptMgr();
  126. DeptDb dd = dm.getDeptDb(DeptDb.ROOTCODE);
  127. DeptView tv = new DeptView(dd);
  128. tv.ListSimple(out, "midFrame", "../archive/archive_user_main.jsp", "", "" );
  129. %>
  130. </td>
  131.   </tr>
  132. </table>
  133. </body>
  134. </html>