From e6453fa621e08b15dfbfb081ca46fb1d5de2f1a4 Mon Sep 17 00:00:00 2001 From: xuxueli <931591021@qq.com> Date: Sat, 20 Apr 2019 14:00:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=90=AF=E3=80=81=E5=81=9C?= =?UTF-8?q?=E3=80=81=E5=88=A0=E9=99=A4=E3=80=81=E8=A7=A6=E5=8F=91=E7=AD=89?= =?UTF-8?q?=E8=BD=BB=E6=93=8D=E4=BD=9C=E6=8F=90=E7=A4=BA=E6=94=B9=E4=B8=BA?= =?UTF-8?q?toast=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/XXL-JOB官方文档.md | 2 +- .../resources/static/js/jobinfo.index.1.js | 41 ++++--------------- 2 files changed, 10 insertions(+), 33 deletions(-) diff --git a/doc/XXL-JOB官方文档.md b/doc/XXL-JOB官方文档.md index bb633e1e..27e45c01 100644 --- a/doc/XXL-JOB官方文档.md +++ b/doc/XXL-JOB官方文档.md @@ -1435,7 +1435,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段 - 11、精简项目,取消第三方依赖,如 commons-collections4 ; - 12、执行器回调日志落盘方案复用RPC序列化方案,并移除Jackson依赖; - 13、底层Log调优,应用正常终止取消异常栈信息打印; -- 14、交互优化,尽量避免新开页面窗口;仅WebIDE支持新开页,并提供窗口快速关闭按钮; +- 14、交互优化,尽量避免新开页面窗口;仅WebIDE支持新开页,并提供窗口快速关闭按钮;任务启、停、删除、触发等轻操作提示改为toast方式, - 15、任务暂停、删除优化,避免quartz delete不完整导致任务脏数据; - 16、任务回调、心跳注册成功日志优化,非核心常规日志调整为debug级别,降低冗余日志输出; - 17、调整首页报表默认区间为本周,避免日志量太大查询缓慢; diff --git a/xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js b/xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js index b6e0095a..fa895fbe 100644 --- a/xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js +++ b/xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js @@ -227,28 +227,15 @@ $(function() { dataType : "json", success : function(data){ if (data.code == 200) { - - layer.open({ - title: I18n.system_tips, - btn: [ I18n.system_ok ], - content: typeName + I18n.system_success , - icon: '1', - end: function(layero, index){ - if (needFresh) { - //window.location.reload(); - jobTable.fnDraw(false); - } - } - }); + layer.msg( typeName + I18n.system_success ); + if (needFresh) { + //window.location.reload(); + jobTable.fnDraw(false); + } } else { - layer.open({ - title: I18n.system_tips, - btn: [ I18n.system_ok ], - content: (data.msg || typeName + I18n.system_fail ), - icon: '2' - }); + layer.msg( data.msg || typeName + I18n.system_fail ); } - }, + } }); }); }); @@ -276,19 +263,9 @@ $(function() { if (data.code == 200) { $('#jobTriggerModal').modal('hide'); - layer.open({ - title: I18n.system_tips, - btn: [ I18n.system_ok ], - content: I18n.jobinfo_opt_run + I18n.system_success , - icon: '1' - }); + layer.msg( I18n.jobinfo_opt_run + I18n.system_success ); } else { - layer.open({ - title: I18n.system_tips, - btn: [ I18n.system_ok ], - content: (data.msg || I18n.jobinfo_opt_run + I18n.system_fail ), - icon: '2' - }); + layer.msg( data.msg || I18n.jobinfo_opt_run + I18n.system_fail ); } } });