📄 statisticsdepartment.xhtml
字号:
<f:view xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:w="http://www.apusic.com/jsf/widget" xmlns:layout="http://www.apusic.com/jsf/layout" xmlns:ajax="http://www.apusic.com/jsf/ajax" renderKitId="AJAX" xmlns:h="http://java.sun.com/jsf/html"> <w:head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="../resources/css/report.css" /> </w:head> <w:page title="#{module.statisticsDepartmentBean.messages.statisticsDepartmentPageTitle}"> <w:form> <table border="0" cellpadding="3" cellspacing="1" width="100%" align="center"> <tr> <td class="reportTitle" align="center" valign="top"> <div> <h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsDepartmentPageTitle}" /> </div> </td> </tr> <tr> <td align="left" valign="top"> <table border="0" class="report" cellpadding="5" cellspacing="0" width="90%" align="center"> <thead> <tr> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsDep}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsPersonTime}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsTotalPeriod}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsParticipants}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsCurNumOfPeople}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsAvgPeriod}" /></td> <td><h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsCoverageRate}" /></td> </tr> </thead> <tbody> <w:forEach value="#{module.statisticsDepartmentBean.data}" var="data"> <tr> <td> <h:outputText value="#{data.name}" /> </td> <td> <h:outputText value="#{data.totalEmployee}" /> </td> <td> <h:outputText value="#{data.totalPeriod}" /> </td> <td> <h:outputText value="#{data.distinctEmployee}" /> </td> <td> <h:outputText value="#{data.curEmployee}" /> </td> <td> <h:outputText value="#{data.avgPeriod}" /> </td> <td> <h:outputText value="#{data.coverageRate}" /> </td> </tr> </w:forEach> <tr> <td colspan="7" style="height: 100%"></td> </tr> <tr class="footer"> <td> <h:outputText value="#{module.statisticsDepartmentBean.messages.statisticsTotal}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.totalEmployee}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.totalPeriod}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.distinctEmployee}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.curEmployee}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.avgPeriod}" /> </td> <td> <h:outputText value="#{module.statisticsDepartmentBean.total.coverageRate}" /> </td> </tr> </tbody> </table> </td> </tr> </table> </w:form> </w:page></f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -