📄 stats_main.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<jsp:include flush="true" page="header.jsp" />
<div id="nav">
<a href="${settings.indexname}"> ${settings.bbname} </a>» <a href="stats.jsp">论坛统计</a> » 基本概况
</div>
<div class="container">
<div class="side">
<jsp:include flush="true" page="stats_navbar.jsp" />
</div>
<div class="content">
<div class="mainbox">
<h3>
会员统计
</h3>
<table summary="会员统计" cellspacing="0" cellpadding="0">
<tr>
<th>
注册会员
</th>
<td>
${valueObject.membersNum }
</td>
<th>
发帖会员
</th>
<td>
${valueObject.membersOfPostsNum }
</td>
</tr>
<tr>
<th>
管理成员
</th>
<td>
${valueObject.memberOfManageNum }
</td>
<th>
未发帖会员
</th>
<td>
${valueObject.membersOfNoPostsNum }
</td>
</tr>
<tr>
<th>
新会员
</th>
<td>
${valueObject.newMemberName }
</td>
<th>
发帖会员占总数
</th>
<td>
${valueObject.postsNum_allNum }%
</td>
</tr>
<tr>
<th>
今日论坛之星
</th>
<td>
<c:choose>
<c:when test="${valueObject.beingBestMem}">
${valueObject.bestMem}
<em title="发帖数">(${valueObject.bestMemPosts })</em>
</c:when>
<c:otherwise>
${valueObject.bestMem}
</c:otherwise>
</c:choose>
</td>
<th>
平均每人发帖数
</th>
<td>
${valueObject.avg_everyBodyPost }
</td>
</tr>
</table>
</div>
<div class="mainbox">
<h3>
论坛统计
</h3>
<table summary="论坛统计" cellspacing="0" cellpadding="0">
<tr>
<th>
版块数
</th>
<td>
${valueObject.formsCount }
</td>
<th>
平均每日新增帖子数
</th>
<td>
${valueObject.avg_addPostsEveryDay }
</td>
<th>
最热门的版块
</th>
<td>
<a href="forumdisplay.jsp?fid=${valueObject.bestModuleID }" target="_blank">${valueObject.bestModule}</a>
</td>
</tr>
<tr>
<th>
主题数
</th>
<td>
${valueObject.threadNum }
</td>
<th>
平均每日注册会员数
</th>
<td>
${valueObject.avg_loginEveryDay }
</td>
<th>
主题数
</th>
<td>
${valueObject.bestModuleThreadNum }
</td>
</tr>
<tr>
<th>
帖子数
</th>
<td>
${valueObject.postsNum }
</td>
<th>
最近 24 小时新增帖子数
</th>
<td>
${valueObject.addPostsInLast24 }
</td>
<th>
帖子数
</th>
<td>
${valueObject.bestModulePostsNum }
</td>
</tr>
<tr>
<th>
平均每个主题被回复次数
</th>
<td>
${valueObject.avg_returnPostsEyeryThread }
</td>
<th>
最近 24 小时新增会员数
</th>
<td>
${valueObject.addMemberInLast24 }
</td>
<th>
论坛活跃指数
</th>
<td>
${valueObject.bestModuleActivityInfo }
</td>
</tr>
</table>
</div>
<c:if test="${valueObject.showFluxSurvey }">
<div class="mainbox">
<h3>
流量概况
</h3>
<table summary="流量概况" cellspacing="0" cellpadding="0">
<tr>
<th>
总页面流量
</th>
<td>
${valueObject.allPageFlux }
</td>
<th>
访问量最多的月份
</th>
<td>
${valueObject.accessMaxNum }
</td>
</tr>
<tr>
<th>
共计来访
</th>
<td>
${valueObject.accesserNum }人次
</td>
<th>
月份总页面流量
</th>
<td>
${valueObject.allPageFluxOfMonth }
</td>
</tr>
<tr>
<th>
会员
</th>
<td>
${valueObject.memberOfAccess }
</td>
<th>
时段
</th>
<td>
${valueObject.accessTime }
</td>
</tr>
<tr>
<th>
游客
</th>
<td>
${valueObject.visitorOfAccess }
</td>
<th>
时段总页面流量
</th>
<td>
${valueObject.accessTimeAllFlux }
</td>
</tr>
<tr>
<th>
平均每人浏览
</th>
<td>
${valueObject.avg_scanEverybody }
</td>
<th>
</th>
<td>
</td>
</tr>
</table>
</div>
</c:if>
<div class="mainbox">
<h3>
月份流量
</h3>
<table summary="月份流量" cellpadding="0" cellspacing="0">
<c:choose>
<c:when test="${valueObject.showFluxSurvey}">
<c:forEach items="${valueObject.monthFlux}"var="pageInfo">
<tr>
<th width="100">
<strong>${pageInfo.information }</strong>
</th>
<td>
<div class="optionbar"><div style="width: ${pageInfo.lineWidth }px"> </div></div>
<strong>${pageInfo.num }</strong>(${pageInfo.numPercent }%)
</td>
</tr>
</c:forEach>
</c:when>
<c:otherwise>
<jsp:include page="stats_subpostlog.jsp"></jsp:include>
</c:otherwise>
</c:choose>
</table>
</div>
<div class="notice">
统计数据已被缓存,上次于 ${valueObject.lastTime } 被更新,下次将于 ${valueObject.nextTime} 进行更新
</div>
</div>
</div>
<jsp:include flush="true" page="footer.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -