| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <!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>
- <c:if test="${fn:contains(requestScope.content, '1')}">
- <th style="width: 15%; text-align: center; height: 40px;">环节名称
- </th>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '2')}">
- <th style="width: 15%; text-align: center; height: 40px;">操作人
- </th>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '3')}">
- <th style="width: 25%; text-align: center; height: 40px;">备注及意见
- </th>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '4')}">
- <th style="width: 20%; text-align: center; height: 40px;">创建时间
- </th>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '5')}">
- <th style="width: 20%; text-align: center; height: 40px;">办结时间
- </th>
- </c:if>
- </tr>
- </tbody>
- <tbody>
- <c:forEach items="${requestScope.tacheList }" var="tache">
- <tr>
- <c:if test="${fn:contains(requestScope.content, '1')}">
- <td style="text-align: center; height: 30px;">
- ${tache.tmodelId.tmodelName }</td>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '2')}">
- <td style="text-align: center; height: 30px;"><c:choose>
- <c:when
- test="${tache.authorizedUser.userId!=null && tache.authorizedUser.userId!='0' && tache.authorizedUser.userId!='' }">
- ${tache.user.username }(授权:${tache.authorizedUser.username})
- </c:when>
- <c:otherwise>
- ${tache.user.username }
- </c:otherwise>
- </c:choose></td>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '3')}">
- <td style="text-align: center; height: 30px;">
- ${tache.remark }</td>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '4')}">
- <td style="text-align: center; height: 30px;">
- ${fn:substring(tache.createdate, 0, 19) }</td>
- </c:if>
- <c:if test="${fn:contains(requestScope.content, '5')}">
- <td style="text-align: center; height: 30px;">
- ${fn:substring(tache.finishdate, 0, 19) }</td>
- </c:if>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </center>
- </body>
- </html>
|