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

view.jsp 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  4. <html>
  5. <head>
  6. <script>
  7. $(function(){
  8. });
  9. </script>
  10. </head>
  11. <body>
  12. <div class="modal-header">
  13. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  14. <h4 class="modal-title">定时任务--查看</h4>
  15. </div>
  16. <div class="modal-body">
  17. <table class="table table-bordered">
  18. <tr>
  19. <th colspan="10" style="color: gray; width: 100%; text-align: center;">定时任务信息</th>
  20. </tr>
  21. <tr>
  22. <th>任务名称:</th>
  23. <td>${fn:escapeXml(pageModel.name)}</td>
  24. <th>状态:</th>
  25. <td>${pageModel.status.value}</td>
  26. </tr>
  27. <tr>
  28. <th>提交人:</th>
  29. <td>${fn:escapeXml(pageModel.user.name)}</td>
  30. <th>提交时间:</th>
  31. <td><javatime:format value="${pageModel.creatTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
  32. </tr>
  33. <tr>
  34. <th>任务:</th>
  35. <td>
  36. ${pageModel.taskType.value}(${pageModel.job})
  37. </td>
  38. <th>执行时间:</th>
  39. <td><javatime:format value="${pageModel.startTime}" pattern="yyyy-MM-dd HH:mm:ss" /></td>
  40. </tr>
  41. <tr>
  42. </tr>
  43. </table>
  44. </div>
  45. <div class="modal-footer">
  46. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  47. </div>
  48. </body>
  49. </html>