clubUserop.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:3k
- <%@ page language="java" contentType="text/html;charset=UTF-8" %>
- <%@ include file="../GVinc/gvInclude.jsp" %>
- <%@ include file="clubMasterPass.jsp" %>
- <jsp:useBean id="cci" scope="request" class="com.gamvan.club.classed.ClubClassInfo"/>
- <%
- //权限判断共享代码
- String uoid[];
- if(request.getMethod().equals("POST")){
- uoid = request.getParameterValues("uoID");
- cuo.useropDel(uoid);
- out.print(prtCenter2("团队成员已被删除!","./clubUserop.jsp",1));
- out.close();
- if(true)return;
- }
- %>
- <html>
- <head>
- <title>社区管理</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link href="css.css" rel="stylesheet" type="text/css">
- </head>
- <body>
- <script type="text/javascript" src="../GVscript/GVjumpPage.js"></script>
- <table width="99%" border="0" align="center" cellpadding="2" cellspacing="2" bgcolor="#e6e6e6">
- <tr>
- <td align="center"><strong>配置社区管理团队</strong></td>
- </tr>
- </table>
- <table width="99%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#9AA8CB">
- <tr bgcolor="#f6f6f6">
- <td bgcolor="#e6e6e6"><a href="clubUseropEdit.jsp">点击这里添加团队成员</a></td>
- </tr>
- </table>
- <table width="99%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#e6e6e6">
- <form name="form1" method="post" action="">
- <tr>
- <td width="40" align="center"><strong>操作</strong></td>
- <td align="center"><strong>用户ID</strong></td>
- <td width="60" align="center"><strong>级别</strong></td>
- <td align="center"><strong>辖区</strong></td>
- <td width="100" align="center"><strong>委任人</strong></td>
- <td width="120" align="center"><strong>委任人IP</strong></td>
- <td width="50" align="center"><strong>权限</strong></td>
- <td width="50" align="center"><strong>编辑</strong></td>
- </tr>
- <c:forEach var="cuo" items="<%=cuo.useropList()%>">
- <tr align="center" bgcolor="#f6f6f6">
- <td bgcolor="#f6f6f6">
- <club:userop type="htmlCheckbox" idIs="${cuo.uoID}"/>
- </td>
- <td>
- <club:userop type="uoUser" idIs="${cuo.userID}" value="${cuo.uoUser}" url="../"/>
- </td>
- <td>
- <c:catch var="cccc">
- <club:userop type="uoGradeName" idIs="${cuo.uoGradeID}"/>
- </c:catch>
- <c:out value="${error}" />
- </td>
- <td>
- <c:catch var="cccc2">
- <club:userop type="uoCcName" idIs="${cuo.uoCID}" url="../"/>
- </c:catch>
- </td>
- <td>
- <club:userop type="uoByUser" value="${cuo.uoByUser}" idIs="${cuo.userID}"/>
- </td>
- <td>
- <club:userop type="uoByip" value="${cuo.uoByip}"/>
- </td>
- <td>
- <club:userop type="uoIs" idIs="${cuo.uoIs}"/>
- </td>
- <td>
- <club:userop type="htmlEdit" idIs="${cuo.uoID}" linkId="${cuo.uoCID}" property="${cuo.uoGradeID}"/>
- </td>
- </tr>
- </c:forEach>
- <tr bgcolor="#f6f6f6">
- <td height="36" colspan="8" bgcolor="#f6f6f6">
-
- <input name="gvSubmit" type="submit" id="gvSubmit" value="删除团队成员"></td>
- </tr>
- </form>
- </table>
- </body>
- </html>