交互优化,尽量避免新开页面窗口;仅WebIDE支持新开页,并提供窗口快速关闭按钮;

This commit is contained in:
xuxueli 2019-01-09 15:41:45 +08:00
parent ec06ae09ae
commit fa9c4efec1
4 changed files with 10 additions and 3 deletions

View File

@ -1399,6 +1399,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 4、项目依赖升级至较新稳定版本如spring、jackson、groovy、xxl-rpc等等
- 5、精简项目取消第三方依赖如 commons-collections4 ;
- 6、底层Log调优应用正常终止取消异常栈信息打印
- 7、交互优化尽量避免新开页面窗口仅WebIDE支持新开页并提供窗口快速关闭按钮
- [迭代中]注册中心优化实时性注册发现心跳注册间隔10srefresh失败则首次注册并立即更新注册信息心跳类似30s过期销毁
- [迭代中]脚本任务,支持数据参数,新版本仅支持单参数不支持需要兼容;
- [迭代中]提供执行器Docker镜像

View File

@ -134,7 +134,7 @@ $(function() {
var html = '<p id="'+ row.id +'" >'+
'<button class="btn btn-primary btn-xs job_trigger" type="button">'+ I18n.jobinfo_opt_run +'</button> '+
start_stop +
'<button class="btn btn-primary btn-xs" type="job_del" type="button" onclick="javascript:window.open(\'' + logUrl + '\')" >'+ I18n.jobinfo_opt_log +'</button><br> '+
'<button class="btn btn-primary btn-xs" type="job_del" type="button" onclick="javascript:window.open(\'' + logUrl + '\', \'_self\' )" >'+ I18n.jobinfo_opt_log +'</button><br> '+
'<button class="btn btn-warning btn-xs update" type="button">'+ I18n.system_opt_edit +'</button> '+
codeBtn +
'<button class="btn btn-danger btn-xs job_operate" _type="job_del" type="button">'+ I18n.system_opt_del +'</button> '+

View File

@ -73,6 +73,12 @@
${I18n.system_save}
</a>
</li>
<li>
<a href="javascript:window.close();" >
<i class="fa fa-fw fa-close" ></i>
${I18n.system_close}
</a>
</li>
</ul>
</div>