汇联通执法队后台管理系统
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

row.jsp 1.8KB

il y a 3 ans
123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <tr>
  4. <td>
  5. <input type="checkbox" name="taskNames" class="taiji_check_one" value='${vo.taskName }'/>
  6. </td>
  7. <td style="width: 60px">${voStatus.count }</td>
  8. <td >
  9. <a href="${rootUrl }app/system/cron/view/${vo.taskName}" class="taiji_modal">${vo.taskName }</a>
  10. </td>
  11. <td>${vo.taskGroup.value }</td>
  12. <td style="min-width: 81px">${vo.cron }</td>
  13. <td align="center" style="width: 100px">
  14. <c:if test="${vo.running}"><span style="color: green">运行</span></c:if>
  15. <c:if test="${!vo.running}"><span style="color: red">停止</span></c:if>
  16. </td>
  17. <td align="center" style="width: 80px">
  18. <c:if test="${vo.taskRunning}"><span style="color: green">正在执行</span></c:if>
  19. <c:if test="${!vo.taskRunning}"><span style="color: red">未执行</span></c:if>
  20. </td>
  21. <td >${vo.info }</td>
  22. <td align="center" style="width: 70px">
  23. <c:if test="${vo.autoStart}">是</c:if>
  24. <c:if test="${!vo.autoStart}"><span style="color: red">否</span></c:if>
  25. </td>
  26. <td class="tdbtn" style="width: 160px">
  27. <c:if test="${!vo.running }">
  28. <a href="${rootUrl }app/system/cron/runner/${vo.taskName}/start" confirm_message="启动调度器:${vo.taskName }?" class="taiji_update ">启动调度器</a>
  29. <a href="${rootUrl }app/system/cron/edit/${vo.taskName}" class="taiji_modal">修改CRON</a>
  30. </c:if>
  31. <c:if test="${vo.running }">
  32. <a href="${rootUrl }app/system/cron/runner/${vo.taskName}/stop" confirm_message="停止调度器:${vo.taskName }?" class="taiji_update ">停止调度器</a>
  33. <c:if test="${!vo.taskRunning }">
  34. <a href="${rootUrl }app/system/cron/runnow/${vo.taskName}" confirm_message="现在执行任务:${vo.taskName }?" class="taiji_update ">执行任务</a>
  35. </c:if>
  36. </c:if>
  37. </td>
  38. </tr>