汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

row.jsp 580B

1234567891011121314151617181920
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <tr>
  4. <td>
  5. <javatime:format value="${vo.startTime}" style="LM" />
  6. </td>
  7. <td>
  8. <javatime:format value="${vo.endTime}" pattern="yyyy-MM-dd HH:mm:ss" />
  9. </td>
  10. <td>
  11. <a href="${rootUrl }app/system/cron/view/${vo.taskName}" class="taiji_modal">${fn:escapeXml(vo.taskName)}</a>
  12. </td>
  13. <td>
  14. <c:if test="${vo.bySystem }">系统触发</c:if>
  15. <c:if test="${!vo.bySystem }">手工触发</c:if>
  16. </td>
  17. <td>${vo.currentCron }</td>
  18. <td>${vo.timeStr }(${vo.execTime }ms)</td>
  19. </tr>