taskHistoricFlow.jsp 717 B

123456789101112131415
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <table class="table table-striped table-bordered table-condensed">
  4. <tr><th>执行环节</th><th>执行人</th><th>开始时间</th><th>结束时间</th><th>提交意见</th><th>任务历时</th></tr>
  5. <c:forEach items="${histoicFlowList}" var="act">
  6. <tr>
  7. <td>${act.histIns.activityName}</td>
  8. <td>${act.assigneeName}</td>
  9. <td><fmt:formatDate value="${act.histIns.startTime}" type="both"/></td>
  10. <td><fmt:formatDate value="${act.histIns.endTime}" type="both"/></td>
  11. <td style="word-wrap:break-word;word-break:break-all;">${act.comment}</td>
  12. <td>${act.durationTime}</td>
  13. </tr>
  14. </c:forEach>
  15. </table>