修复定时任务执行一次按钮后不提示消息问题

This commit is contained in:
RuoYi
2020-05-17 15:47:29 +08:00
parent 9f4918cc14
commit 9aeb0cc1f3
3 changed files with 7 additions and 1 deletions

View File

@ -397,7 +397,7 @@ export default {
type: "warning"
}).then(function() {
return runJob(row.jobId, row.jobGroup);
}).then(function() {
}).then(() => {
this.msgSuccess("执行成功");
}).catch(function() {});
},