📄 clubtopicloglist.jsp
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8" %>
<%@ include file="../GVinc/gvInclude.jsp" %>
<%@ include file="clubMasterPass.jsp" %>
<jsp:useBean id="ctm" scope="page" class="com.gamvan.club.topic.ClubTopicManage" />
<jsp:useBean id="ctl" scope="page" class="com.gamvan.club.topic.ClubTopicLog" />
<%
//权限判断共享代码
boolean ispass = false;
//ArrayEdit ae = new ArrayEdit();
ispass = ae.txtsArray(gvcmgTxt,21,"|");
if(!ispass){
out.print(prtCenter2("您无权进行此项操作!","",2));
out.close();
return;
}
int iPage = ParamUtils.getIntParameter(request,"iPage",1);
if(request.getMethod().equals("POST")){
ctl.topicLogDels(request.getParameterValues("topicLogID"));
out.print(OutPrint.prtCenter(ctl.getMessage(),"clubTopicLogList.jsp?iPage="+iPage+"",1));
out.close();
if(true)return;
}
%><html><head><title>社区管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<STYLE type=text/css media=screen>@import url(../GVinc/GamVanClubStyle.css);</STYLE>
</head><body>
<script language="javascript" src="../GVscript/GVtopCode.js"></script>
<script language="javascript" src="../GVscript/GVshowMenu.js"></script>
<table width="100%" border="0" align="center" cellpadding="1" cellspacing="1" class="tab">
<tr>
<td height="25" align="center"><strong>社区管理日志</strong></td>
</tr></table>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="tab">
<form name="Gforms" id="Gforms" method="post" action="" onSubmit="return postMsg2();">
<tr align="center" class="tab1">
<td width="36" height="25"><strong>操作</strong></td>
<td width="80"><strong>日志类型</strong></td>
<td width=""><strong>主题</strong></td>
<td width="104"><strong>日志产生时间</strong></td>
<td width="110"><span class="text_bold">操作人员</span></td>
<td width="120" align="center"><strong>操作理由</strong></td>
</tr>
<%
ctl.setCcID(ccID);
int totalPage = ctl.topicLogCount(-1, -1);
List list = ctl.topicLogList(iPage, 30);
if(totalPage==0){
out.print("<tr class=\"tab3\"><td colspan=\"10\" height=\"25\" align=\"center\">本版暂无日志可供查看...</td></tr>");
}
%><c:forEach var="log" items="<%=list%>">
<tr class="tab3">
<td height="25" align="center"> <club:log type="htmlCheckbox" value="${log.topicLogID}" property="topicLogID" idIs="${log.topicLogID}"/> </td>
<td align="center"> <club:log type="logSo" value="${log.topicLogSo}" /> </td>
<td><club:log type="userName" idIs="${log.userID}" value="${log.userName}" linkId="${log.topicReID}"/><club:log type="topic" ccID="<%=ccID%>" idIs="${log.topicID}" linkId="${log.topicReID}" value="${log.topic}" url="../" property="_blank"/> </td>
<td align="center"> <span class="smalltxt"><club:topic type="topicAddTime" value="${log.topicLogByDateTime}"/></span> </td>
<td align="center"> <club:log type="byUser" bea="<%=true%>" idIs="${log.topicLogByUserID}" linkId="${log.topicLogByUserList}" value="${log.topicLogByUserName}"/> </td>
<td align="center" bgcolor="#f6f6f6"> <club:log type="topicLogTxt" value="${log.topicLogTxt}" /> </td>
</tr>
</c:forEach>
<tr class="tab2">
<td height="30" align="center">
<input name="chkall" type="checkbox" id="chkall" value="on" onclick="checkAll(this.form)"/>
</td>
<td colspan="10"><input name="gvSubmit2" type="submit" class="btn" id="gvSubmit2" value="删除日志"></td>
</tr>
</form>
</table>
<DIV class="line"></DIV>
<table width="100%" height="25" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td><%=OutPrint.pageJump(totalPage,30, iPage, "clubTopicLogList.jsp?")%>
</td></tr></table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -