job.html 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <!DOCTYPE html>
  2. <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  3. <head>
  4. <th:block th:include="include :: header('定时任务列表')" />
  5. </head>
  6. <body class="gray-bg">
  7. <div class="container-div">
  8. <div class="row">
  9. <div class="col-sm-12 search-collapse">
  10. <form id="job-form">
  11. <div class="select-list">
  12. <ul>
  13. <li>
  14. 任务名称:<input type="text" name="jobName"/>
  15. </li>
  16. <li>
  17. 任务分组:<select name="jobGroup" th:with="type=${@dict.getType('sys_job_group')}">
  18. <option value="">所有</option>
  19. <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
  20. </select>
  21. </li>
  22. <li>
  23. 任务状态:<select name="status" th:with="type=${@dict.getType('sys_job_status')}">
  24. <option value="">所有</option>
  25. <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
  26. </select>
  27. </li>
  28. <li>
  29. <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
  30. <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
  31. </li>
  32. </ul>
  33. </div>
  34. </form>
  35. </div>
  36. <div class="btn-group-sm" id="toolbar" role="group">
  37. <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="monitor:job:add">
  38. <i class="fa fa-plus"></i> 新增
  39. </a>
  40. <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="monitor:job:edit">
  41. <i class="fa fa-edit"></i> 修改
  42. </a>
  43. <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="monitor:job:remove">
  44. <i class="fa fa-remove"></i> 删除
  45. </a>
  46. <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="monitor:job:export">
  47. <i class="fa fa-download"></i> 导出
  48. </a>
  49. <a class="btn btn-info" onclick="javascript:jobLog()" shiro:hasPermission="monitor:job:detail">
  50. <i class="fa fa-list"></i> 日志
  51. </a>
  52. </div>
  53. <div class="col-sm-12 select-table table-striped">
  54. <table id="bootstrap-table"></table>
  55. </div>
  56. </div>
  57. </div>
  58. <th:block th:include="include :: footer" />
  59. <script th:inline="javascript">
  60. var detailFlag = [[${@permission.hasPermi('monitor:job:detail')}]];
  61. var editFlag = [[${@permission.hasPermi('monitor:job:edit')}]];
  62. var removeFlag = [[${@permission.hasPermi('monitor:job:remove')}]];
  63. var statusFlag = [[${@permission.hasPermi('monitor:job:changeStatus')}]];
  64. var datas = [[${@dict.getType('sys_job_group')}]];
  65. var prefix = ctx + "monitor/job";
  66. $(function() {
  67. var options = {
  68. url: prefix + "/list",
  69. detailUrl: prefix + "/detail/{id}",
  70. createUrl: prefix + "/add",
  71. updateUrl: prefix + "/edit/{id}",
  72. removeUrl: prefix + "/remove",
  73. exportUrl: prefix + "/export",
  74. sortName: "createTime",
  75. sortOrder: "desc",
  76. modalName: "任务",
  77. columns: [{
  78. checkbox: true
  79. },
  80. {
  81. field: 'jobId',
  82. title: '任务编号'
  83. },
  84. {
  85. field: 'jobName',
  86. title: '任务名称',
  87. },
  88. {
  89. field: 'jobGroup',
  90. title: '任务分组',
  91. formatter: function(value, row, index) {
  92. return $.table.selectDictLabel(datas, value);
  93. }
  94. },
  95. {
  96. field: 'invokeTarget',
  97. title: '调用目标字符串',
  98. formatter: function(value, row, index) {
  99. return $.table.tooltip(value);
  100. }
  101. },
  102. {
  103. field: 'cronExpression',
  104. title: '执行表达式'
  105. },
  106. {
  107. visible: statusFlag == 'hidden' ? false : true,
  108. title: '任务状态',
  109. align: 'center',
  110. formatter: function (value, row, index) {
  111. return statusTools(row);
  112. }
  113. },
  114. {
  115. field: 'createTime',
  116. title: '创建时间',
  117. sortable: true
  118. },
  119. {
  120. title: '操作',
  121. align: 'center',
  122. formatter: function(value, row, index) {
  123. var actions = [];
  124. actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="#" onclick="$.operate.edit(\'' + row.jobId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
  125. actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="#" onclick="$.operate.remove(\'' + row.jobId + '\')"><i class="fa fa-remove"></i>删除</a> ');
  126. var more = [];
  127. more.push("<a class='btn btn-default btn-xs " + statusFlag + "' href='javascript:void(0)' onclick='run(" + row.jobId + ")'><i class='fa fa-play-circle-o'></i> 执行一次</a> ");
  128. more.push("<a class='btn btn-default btn-xs " + detailFlag + "' href='javascript:void(0)' onclick='$.operate.detail(" + row.jobId + ")'><i class='fa fa-search'></i>任务详细</a> ");
  129. more.push("<a class='btn btn-default btn-xs " + detailFlag + "' href='javascript:void(0)' onclick='jobLog(" + row.jobId + ")'><i class='fa fa-list'></i>调度日志</a>");
  130. actions.push('<a class="btn btn-info btn-xs" role="button" data-container="body" data-placement="left" data-toggle="popover" data-html="true" data-trigger="hover" data-content="' + more.join('') + '"><i class="fa fa-chevron-circle-right"></i>更多操作</a>');
  131. return actions.join('');
  132. }
  133. }]
  134. };
  135. $.table.init(options);
  136. });
  137. /* 调度任务状态显示 */
  138. function statusTools(row) {
  139. if (row.status == 1) {
  140. return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="start(\'' + row.jobId + '\', \'' + row.jobGroup + '\')"></i> ';
  141. } else {
  142. return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="stop(\'' + row.jobId + '\', \'' + row.jobGroup + '\')"></i> ';
  143. }
  144. }
  145. /* 立即执行一次 */
  146. function run(jobId) {
  147. $.modal.confirm("确认要立即执行一次任务吗?", function() {
  148. $.operate.post(prefix + "/run", { "jobId": jobId});
  149. })
  150. }
  151. /* 调度任务-停用 */
  152. function stop(jobId, jobGroup) {
  153. $.modal.confirm("确认要停用任务吗?", function() {
  154. $.operate.post(prefix + "/changeStatus", { "jobId": jobId, "jobGroup": jobGroup, "status": 1 });
  155. })
  156. }
  157. /* 调度任务-启用 */
  158. function start(jobId, jobGroup) {
  159. $.modal.confirm("确认要启用任务吗?", function() {
  160. $.operate.post(prefix + "/changeStatus", { "jobId": jobId, "jobGroup": jobGroup, "status": 0 });
  161. })
  162. }
  163. /* 调度日志查询 */
  164. function jobLog(jobId) {
  165. var url = ctx + 'monitor/jobLog';
  166. if ($.common.isNotEmpty(jobId)) {
  167. url += '?jobId=' + jobId;
  168. }
  169. $.modal.openTab("调度日志", url);
  170. }
  171. </script>
  172. </body>
  173. </html>