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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.module.cms.*"%>
  5. <%@ page import="cn.js.fan.module.pvg.*"%>
  6. <%@ page import="cn.js.fan.web.*"%>
  7. <html>
  8. <head>
  9. <title>管理登录</title>
  10. <link href="../common.css" rel="stylesheet" type="text/css">
  11. <link href="default.css" rel="stylesheet" type="text/css">
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <style type="text/css">
  14. <!--
  15. .style4 {
  16. color: #FFFFFF;
  17. font-weight: bold;
  18. }
  19. -->
  20. </style>
  21. </head>
  22. <body bgcolor="#FFFFFF" text="#000000">
  23. <jsp:useBean id="leafPriv" scope="page" class="cn.js.fan.module.cms.LeafPriv"/>
  24. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  25. <%
  26. //if (!privilege.isUserPrivValid(request, com.redmoon.oa.pvg.PrivDb.PRIV_ADMIN)) {
  27. // out.print(StrUtil.Alert_Back(privilege.MSG_INVALID));
  28. // return;
  29. //}
  30. String op = ParamUtil.get(request, "op");
  31. String dirCode = ParamUtil.get(request, "dirCode");
  32. leafPriv.setDirCode(dirCode);
  33. if (!(leafPriv.canUserDel(privilege.getUser(request)) || leafPriv.canUserExamine(privilege.getUser(request)))) {
  34. out.print(StrUtil.Alert_Back(privilege.MSG_INVALID + " 用户需对该节点拥有删除和审核的权限!"));
  35. return;
  36. }
  37. Leaf leaf = new Leaf();
  38. leaf = leaf.getLeaf(dirCode);
  39. if (op.equals("add")) {
  40. String name = ParamUtil.get(request, "name");
  41. int type = ParamUtil.getInt(request, "type");
  42. if (type==1) {
  43. User user = new User();
  44. user = user.getUser(name);
  45. if (!user.isLoaded()) {
  46. out.print(StrUtil.Alert_Back("该用户不存在!"));
  47. return;
  48. }
  49. }
  50. try {
  51. if (leafPriv.add(name, type))
  52. out.print(StrUtil.Alert("添加成功!"));
  53. }
  54. catch (ErrMsgException e) {
  55. out.print(StrUtil.Alert_Back(e.getMessage()));
  56. }
  57. }
  58. if (op.equals("modify")) {
  59. int id = ParamUtil.getInt(request, "id");
  60. int see = 0, append=0, del=0, modify=0, examine=0;
  61. String strsee = ParamUtil.get(request, "see");
  62. if (StrUtil.isNumeric(strsee)) {
  63. see = Integer.parseInt(strsee);
  64. }
  65. String strappend = ParamUtil.get(request, "append");
  66. if (StrUtil.isNumeric(strappend)) {
  67. append = Integer.parseInt(strappend);
  68. }
  69. String strmodify = ParamUtil.get(request, "modify");
  70. if (StrUtil.isNumeric(strmodify)) {
  71. modify = Integer.parseInt(strmodify);
  72. }
  73. String strdel = ParamUtil.get(request, "del");
  74. if (StrUtil.isNumeric(strdel)) {
  75. del = Integer.parseInt(strdel);
  76. }
  77. String strexamine = ParamUtil.get(request, "examine");
  78. if (StrUtil.isNumeric(strexamine)) {
  79. examine = Integer.parseInt(strexamine);
  80. }
  81. leafPriv.setId(id);
  82. leafPriv.setAppend(append);
  83. leafPriv.setModify(modify);
  84. leafPriv.setDel(del);
  85. leafPriv.setSee(see);
  86. leafPriv.setExamine(examine);
  87. if (leafPriv.save())
  88. out.print(StrUtil.Alert("修改成功!"));
  89. else
  90. out.print(StrUtil.Alert("修改失败!"));
  91. }
  92. if (op.equals("del")) {
  93. int id = ParamUtil.getInt(request, "id");
  94. LeafPriv lp = new LeafPriv();
  95. lp = lp.getLeafPriv(id);
  96. if (lp.del())
  97. out.print(StrUtil.Alert("删除成功!"));
  98. else
  99. out.print(StrUtil.Alert("删除失败!"));
  100. }
  101. %>
  102. <table cellSpacing="0" cellPadding="0" width="100%">
  103.   <tbody>
  104.     <tr>
  105.       <td class="head">管理 <%=leaf.getName()%> 权限</td>
  106.     </tr>
  107.   </tbody>
  108. </table>
  109. <%
  110. Vector result = leafPriv.list();
  111. Iterator ir = result.iterator();
  112. %>
  113. <br>
  114. <br>
  115. <table style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" cellSpacing="0" cellPadding="3" width="95%" align="center">
  116.   <tbody>
  117.     <tr>
  118.       <td class="thead" style="PADDING-LEFT: 10px" noWrap width="18%">用户</td>
  119.       <td class="thead" noWrap width="13%"><img src="images/tl.gif" align="absMiddle" width="10" height="15">类型</td>
  120.       <td class="thead" noWrap width="43%"><img src="images/tl.gif" align="absMiddle" width="10" height="15">权限</td>
  121.       <td width="26%" noWrap class="thead"><img src="images/tl.gif" align="absMiddle" width="10" height="15">操作</td>
  122.     </tr>
  123. <%
  124. int i = 0;
  125. while (ir.hasNext()) {
  126.   LeafPriv lp = (LeafPriv)ir.next();
  127. i++;
  128. %>
  129. <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method=post>
  130.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  131.       <td style="PADDING-LEFT: 10px">&nbsp;<img src="images/arrow.gif" align="absmiddle">&nbsp;<%=lp.getName()%>
  132.   <input type=hidden name="id" value="<%=lp.getId()%>">
  133.       <input type=hidden name="dirCode" value="<%=lp.getDirCode()%>">
  134. </td>
  135.       <td><%=lp.getType()==0?"用户组":"用户"%></td>
  136.       <td>
  137.   <input name=see type=checkbox <%=lp.getSee()==1?"checked":""%> value="1">浏览&nbsp;
  138.   <input name=append type=checkbox <%=lp.getAppend()==1?"checked":""%> value="1"> 
  139.   添加 &nbsp;
  140.   <input name=del type=checkbox <%=lp.getDel()==1?"checked":""%> value="1">
  141.   删除&nbsp;
  142.   <input name=modify type=checkbox <%=lp.getModify()==1?"checked":""%> value="1"> 
  143.   修改 
  144.   <input name=examine type=checkbox <%=lp.getExamine()==1?"checked":""%> value="1">
  145.   审核 </td>
  146.       <td>
  147.   <input type=submit value="修改">
  148. &nbsp;<input type=button onClick="window.location.href='dir_priv_m.jsp?op=del&dirCode=<%=StrUtil.UrlEncode(leaf.getCode())%>&id=<%=lp.getId()%>'" value=删除> </td>
  149.     </tr></form>
  150. <%}%>
  151.   </tbody>
  152. </table>
  153. <HR noShade SIZE=1>
  154. <DIV style="WIDTH: 95%" align=right>
  155.   <INPUT 
  156. onclick="javascript:location.href='dir_priv_add.jsp?dirCode=<%=StrUtil.UrlEncode(leafPriv.getDirCode())%>';" type=image 
  157. height=20 width=80 src="images/btn_add.gif">
  158. </DIV>
  159. </body>
  160. <script language="javascript">
  161. <!--
  162. function form1_onsubmit()
  163. {
  164. errmsg = "";
  165. if (form1.pwd.value!=form1.pwd_confirm.value)
  166. errmsg += "密码与确认密码不致,请检查!n"
  167. if (errmsg!="")
  168. {
  169. alert(errmsg);
  170. return false;
  171. }
  172. }
  173. //-->
  174. </script>
  175. </html>