mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 02:08:43 +08:00 
			
		
		
		
	修复定时任务执行一次按钮后不提示消息问题
This commit is contained in:
		| @@ -397,7 +397,7 @@ export default { | |||||||
|           type: "warning" |           type: "warning" | ||||||
|         }).then(function() { |         }).then(function() { | ||||||
|           return runJob(row.jobId, row.jobGroup); |           return runJob(row.jobId, row.jobGroup); | ||||||
|         }).then(function() { |         }).then(() => { | ||||||
|           this.msgSuccess("执行成功"); |           this.msgSuccess("执行成功"); | ||||||
|         }).catch(function() {}); |         }).catch(function() {}); | ||||||
|     }, |     }, | ||||||
|   | |||||||
| @@ -76,6 +76,9 @@ public class SysJobLogController extends BaseController | |||||||
|         return toAjax(jobLogService.deleteJobLogByIds(jobLogIds)); |         return toAjax(jobLogService.deleteJobLogByIds(jobLogIds)); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /** | ||||||
|  |      * 清空定时任务调度日志 | ||||||
|  |      */ | ||||||
|     @PreAuthorize("@ss.hasPermi('monitor:job:remove')") |     @PreAuthorize("@ss.hasPermi('monitor:job:remove')") | ||||||
|     @Log(title = "调度日志", businessType = BusinessType.CLEAN) |     @Log(title = "调度日志", businessType = BusinessType.CLEAN) | ||||||
|     @DeleteMapping("/clean") |     @DeleteMapping("/clean") | ||||||
|   | |||||||
| @@ -124,6 +124,9 @@ public class GenController extends BaseController | |||||||
|         return AjaxResult.success(); |         return AjaxResult.success(); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /** | ||||||
|  |      * 删除代码生成 | ||||||
|  |      */ | ||||||
|     @PreAuthorize("@ss.hasPermi('tool:gen:remove')") |     @PreAuthorize("@ss.hasPermi('tool:gen:remove')") | ||||||
|     @Log(title = "代码生成", businessType = BusinessType.DELETE) |     @Log(title = "代码生成", businessType = BusinessType.DELETE) | ||||||
|     @DeleteMapping("/{tableIds}") |     @DeleteMapping("/{tableIds}") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 RuoYi
					RuoYi