| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=GBK">
- <title>流程办理耗时统计</title>
- <script type="text/javascript" src="/shares/pazu/plugPrint.js"></script>
- </head>
- <body>
- <TABLE width="100%" cellpadding="0" cellspacing="0" align="center"
- class="p__" style="margin: 0px auto;">
- <TR class="p__">
- <TD align="center" id="form1" class="p__">
- <!-- <INPUT type="button" -->
- <!-- value="直接打印" class="p__" onclick="prn1_print()"> -->
- <INPUT
- type="button" value="打印预览" onclick="prn1_preview()" class="p__"></TD>
- </TR>
- </TABLE>
- <center>
- <table style="width: 100%;" cellspacing="0" cellpadding="0" border="1">
- <tbody>
- <tr>
- <th style="width: 15%; text-align: center; height: 40px;">姓名
- </th>
- <th style="width: 25%; text-align: center; height: 40px;">平均办理时间(单位:小时)
- </th>
- <th style="width: 20%; text-align: center; height: 40px;">最少办理时间(单位:小时)
- </th>
- <th style="width: 20%; text-align: center; height: 40px;">最长办理时间(单位:小时)
- </th>
- <th style="width: 20%; text-align: center; height: 40px;">办理环节数量
- </th>
- </tr>
- </tbody>
- <tbody>
- <c:forEach items="${requestScope.list }" var="stat">
- <tr>
- <td style="text-align: center; height: 30px;">
- ${stat.name }
- </td>
- <td style="text-align: center; height: 30px;">
- <c:choose>
- <c:when test="${stat.avgcost == null || stat.avgcost == '' }">0</c:when>
- <c:otherwise>${stat.avgcost }</c:otherwise>
- </c:choose>
- </td>
- <td style="text-align: center; height: 30px;">
- <c:choose>
- <c:when test="${stat.mincost == null || stat.mincost == '' }">0</c:when>
- <c:otherwise>${stat.mincost }</c:otherwise>
- </c:choose>
- </td>
- <td style="text-align: center; height: 30px;">
- <c:choose>
- <c:when test="${stat.maxcost == null || stat.maxcost == '' }">0</c:when>
- <c:otherwise>${stat.maxcost }</c:otherwise>
- </c:choose>
- </td>
- <td style="text-align: center; height: 30px;">
- <c:choose>
- <c:when test="${stat.counts == null || stat.counts == '' }">0</c:when>
- <c:otherwise>${stat.counts }</c:otherwise>
- </c:choose>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </center>
- </body>
- </html>
|