taskFlowChart.jsp 633 B

123456789101112
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <table class="table table-striped table-bordered ">
  4. <c:forEach items="${histoicFlowList}" var="act">
  5. <c:if test="${act.histIns.endTime !=null}">
  6. <td id="start" style="width:80px;text-align:center;background-color:#5BA276;"><span style="color:#FFFFFF;">${act.histIns.activityName}>></span></td>
  7. </c:if>
  8. <c:if test="${act.histIns.endTime ==null}">
  9. <td id="start" style="width:80px;text-align:center;background-color:red;"><span style="color:#FFFFFF;">${act.histIns.activityName}</span></td>
  10. </c:if>
  11. </c:forEach>
  12. </table>