clubUserop.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. <%@ page language="java" contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="../GVinc/gvInclude.jsp" %>
  3. <%@ include file="clubMasterPass.jsp" %>
  4. <jsp:useBean id="cci" scope="request" class="com.gamvan.club.classed.ClubClassInfo"/>
  5. <% 
  6. //权限判断共享代码
  7. String uoid[];
  8. if(request.getMethod().equals("POST")){
  9. uoid = request.getParameterValues("uoID");
  10. cuo.useropDel(uoid);
  11. out.print(prtCenter2("团队成员已被删除!","./clubUserop.jsp",1));
  12. out.close();
  13. if(true)return;
  14. }
  15. %>
  16. <html>
  17. <head>
  18. <title>社区管理</title>
  19. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  20. <link href="css.css" rel="stylesheet" type="text/css">
  21. </head>
  22. <body>
  23. <script type="text/javascript" src="../GVscript/GVjumpPage.js"></script>
  24. <table width="99%" border="0" align="center" cellpadding="2" cellspacing="2" bgcolor="#e6e6e6">
  25.   <tr>
  26.     <td align="center"><strong>配置社区管理团队</strong></td>
  27.   </tr>
  28. </table>
  29. <table width="99%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#9AA8CB">
  30.   <tr bgcolor="#f6f6f6">
  31.     <td bgcolor="#e6e6e6"><a href="clubUseropEdit.jsp">点击这里添加团队成员</a></td>
  32.   </tr>
  33. </table>
  34. <table width="99%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#e6e6e6">
  35.   <form name="form1" method="post" action="">
  36.     <tr>
  37.       <td width="40" align="center"><strong>操作</strong></td>
  38.       <td align="center"><strong>用户ID</strong></td>
  39.       <td width="60" align="center"><strong>级别</strong></td>
  40.       <td align="center"><strong>辖区</strong></td>
  41.       <td width="100" align="center"><strong>委任人</strong></td>
  42.       <td width="120" align="center"><strong>委任人IP</strong></td>
  43.       <td width="50" align="center"><strong>权限</strong></td>
  44.       <td width="50" align="center"><strong>编辑</strong></td>
  45.     </tr>
  46. <c:forEach var="cuo" items="<%=cuo.useropList()%>">
  47. <tr align="center" bgcolor="#f6f6f6">
  48.       <td bgcolor="#f6f6f6">
  49. <club:userop type="htmlCheckbox" idIs="${cuo.uoID}"/>
  50.   </td>
  51.       <td>
  52. <club:userop type="uoUser" idIs="${cuo.userID}" value="${cuo.uoUser}" url="../"/>
  53.   </td>
  54.       <td>
  55. <c:catch var="cccc">   
  56. <club:userop type="uoGradeName" idIs="${cuo.uoGradeID}"/>
  57. </c:catch>
  58. <c:out value="${error}" />
  59.   </td>
  60.       <td>
  61. <c:catch var="cccc2">   
  62. <club:userop type="uoCcName" idIs="${cuo.uoCID}" url="../"/>
  63. </c:catch>
  64.   </td>
  65.       <td>
  66. <club:userop type="uoByUser" value="${cuo.uoByUser}" idIs="${cuo.userID}"/>
  67.   </td>
  68.       <td>
  69. <club:userop type="uoByip" value="${cuo.uoByip}"/>
  70.   </td>
  71.       <td>
  72. <club:userop type="uoIs" idIs="${cuo.uoIs}"/>
  73.   </td>
  74.       <td>
  75. <club:userop type="htmlEdit" idIs="${cuo.uoID}" linkId="${cuo.uoCID}" property="${cuo.uoGradeID}"/>
  76. </td>
  77. </tr>
  78. </c:forEach>
  79.     <tr bgcolor="#f6f6f6">
  80.       <td height="36" colspan="8" bgcolor="#f6f6f6"> 
  81. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  82.       <input name="gvSubmit" type="submit" id="gvSubmit" value="删除团队成员"></td>
  83.     </tr>
  84.   </form>
  85. </table>
  86. </body>
  87. </html>