grgw_old_java/heatsupply2/WebContent/webpage/modules/act/actTaskFlowChart.jsp

12 lines
633 B
Plaintext
Raw Normal View History

2025-07-01 14:56:45 +08:00
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/webpage/include/taglib.jsp"%>
<table class="table table-striped table-bordered ">
<c:forEach items="${histoicFlowList}" var="act">
<c:if test="${act.histIns.endTime !=null}">
<td id="start" style="width:80px;text-align:center;background-color:#5BA276;"><span style="color:#FFFFFF;">${act.histIns.activityName}>></span></td>
</c:if>
<c:if test="${act.histIns.endTime ==null}">
<td id="start" style="width:80px;text-align:center;background-color:red;"><span style="color:#FFFFFF;">${act.histIns.activityName}</span></td>
</c:if>
</c:forEach>
</table>