1
0

schedule_log.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>定时任务日志</title>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  8. <!--bootstrap-->
  9. <link rel="stylesheet" href="/statics/css/bootstrap.min.css">
  10. <link rel="stylesheet" href="/statics/css/font-awesome.min.css">
  11. <!--main-->
  12. <link rel="stylesheet" href="/statics/css/main.css">
  13. <link rel="stylesheet" href="/statics/css/iview.css">
  14. <link rel="stylesheet" href="/statics/css/style.css">
  15. <!--jqgrid-->
  16. <link rel="stylesheet" href="/statics/plugins/jqgrid/ui.jqgrid-bootstrap.css">
  17. <link rel="stylesheet" href="/statics/plugins/ztree/css/metroStyle/metroStyle.css">
  18. <!--treegrid-->
  19. <link rel="stylesheet" href="/statics/plugins/treegrid/jquery.treegrid.css">
  20. <!--jquery-->
  21. <script src="/statics/libs/jquery.min.js"></script>
  22. <!--layer-->
  23. <script src="/statics/plugins/layer/layer.js"></script>
  24. <!--bootstrap-->
  25. <script src="/statics/libs/bootstrap.min.js"></script>
  26. <!--vue-->
  27. <script src="/statics/libs/vue.min.js"></script>
  28. <script src="/statics/libs/iview.min.js"></script>
  29. <!-- print -->
  30. <script src="/statics/jquery.print.js"></script>
  31. <!--jqgrid-->
  32. <script src="/statics/plugins/jqgrid/grid.locale-cn.js"></script>
  33. <script src="/statics/plugins/jqgrid/jquery.jqGrid.min.js"></script>
  34. <!--ztree-->
  35. <script src="/statics/plugins/ztree/jquery.ztree.all.min.js"></script>
  36. <!--treegrid-->
  37. <script src="/statics/plugins/treegrid/jquery.treegrid.extension.js"></script>
  38. <script src="/statics/plugins/treegrid/jquery.treegrid.min.js"></script>
  39. <script src="/statics/plugins/treegrid/jquery.treegrid.bootstrap3.js"></script>
  40. <script src="/statics/plugins/treegrid/tree.table.js"></script>
  41. <script src="/statics/libs/jquery-extend.js"></script>
  42. <script src="/statics/libs/iNotify.js"></script>
  43. <script src="/js/common.js"></script>
  44. <script src="/js/sys/schedule_log.js"></script>
  45. </head>
  46. <body>
  47. <div id="rrapp">
  48. <div>
  49. <Row :gutter="16">
  50. <div class="search-group">
  51. <i-col span="4">
  52. <i-input v-model="q.jobId" @on-enter="query" placeholder="任务ID"/>
  53. </i-col>
  54. <i-button @click="query">查询</i-button>
  55. <i-button type="warning" @click="back">返回</i-button>
  56. </div>
  57. </Row>
  58. <table id="jqGrid"></table>
  59. <div id="jqGridPager"></div>
  60. </div>
  61. </body>
  62. </html>