汇联通执法队后台管理系统
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <%@ page contentType="text/html;charset=utf-8"%>
  4. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  5. <html>
  6. <head>
  7. <script>
  8. $(function(){
  9. });
  10. </script>
  11. </head>
  12. <body>
  13. <div class="modal-header">
  14. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  15. <h4 class="modal-title">调度任务--查看</h4>
  16. </div>
  17. <div class="modal-body">
  18. <table class="table table-bordered">
  19. <tr>
  20. <th colspan="4" style="color: gray; width: 100%; text-align: center;">调度任务信息</th>
  21. </tr>
  22. <tr>
  23. <th>任务名:</th>
  24. <td>${fn:escapeXml(pageModel.taskName)}</td>
  25. <th>cron:</th>
  26. <td>${fn:escapeXml(pageModel.cron)}</td>
  27. </tr>
  28. <tr>
  29. <th>任务分组:</th>
  30. <td>${fn:escapeXml(pageModel.taskGroup.value)}</td>
  31. <th>自启动:</th>
  32. <td>
  33. <c:if test="${pageModel.autoStart}">是</c:if>
  34. <c:if test="${!pageModel.autoStart}"><span style="color: red">否</span></c:if>
  35. </td>
  36. </tr>
  37. <tr>
  38. <th>调度器状态:</th>
  39. <td>
  40. <c:if test="${pageModel.running}"><span style="color: green">运行</span></c:if>
  41. <c:if test="${!pageModel.running}"><span style="color: red">停止</span></c:if>
  42. </td>
  43. <th>任务状态:</th>
  44. <td>
  45. <c:if test="${pageModel.taskRunning}"><span style="color: green">正在执行</span></c:if>
  46. <c:if test="${!pageModel.taskRunning}"><span style="color: red">未执行</span></c:if>
  47. </td>
  48. </tr>
  49. <tr>
  50. <th>备注:</th>
  51. <td colspan="3">${pageModel.info}</td>
  52. </tr>
  53. </table>
  54. </div>
  55. <div class="modal-footer">
  56. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  57. </div>
  58. </body>
  59. </html>