forked from p81075629/datagear
修复看板嵌套首页自动跳转参数丢失的BUG
This commit is contained in:
parent
9f46c68343
commit
61b033a4df
|
@ -1,9 +1,8 @@
|
|||
下一版本:
|
||||
|
||||
升级ECharts至5.0版本;
|
||||
ok 修复看板嵌套首页自动跳转参数丢失的BUG;
|
||||
升级SpringBoot;
|
||||
解决processUpdateOptions可能引起的图表事件原始数据对应问题;
|
||||
解决看板嵌套首页跳转参数丢失问题;
|
||||
更新内置数据库驱动为较新版本;
|
||||
整理看板列表页面按钮,隐藏不常用的按钮;
|
||||
共享看板支持设置密码;
|
||||
|
@ -11,6 +10,7 @@
|
|||
柱状图自动转数值型名称为字符串;
|
||||
|
||||
待定:
|
||||
升级ECharts至5.0版本;(待定,5.0.2版本的关系图graph在使用geo坐标系统时报错)
|
||||
系统添加缓存支持;
|
||||
添加更多内置图表插件:嵌套饼图、盒须图、地图热力图、路径图;
|
||||
改进看板表单功能,支持不绘制表单项,而仅是绑定参数;
|
||||
|
|
|
@ -814,8 +814,14 @@ public class DashboardController extends AbstractDataAnalysisController implemen
|
|||
int subPathSlashIdx = firstTemplate.indexOf(FileUtil.PATH_SEPARATOR_SLASH);
|
||||
if (subPathSlashIdx > 0 && subPathSlashIdx < firstTemplate.length() - 1)
|
||||
{
|
||||
response.sendRedirect(
|
||||
WebUtils.getContextPath(request) + "/analysis/dashboard/show/" + id + "/" + firstTemplate);
|
||||
String redirectTo = WebUtils.getContextPath(request) + "/analysis/dashboard/show/" + id + "/"
|
||||
+ firstTemplate;
|
||||
String qs = request.getQueryString();
|
||||
|
||||
if (!StringUtil.isEmpty(qs))
|
||||
redirectTo = redirectTo + "?" + qs;
|
||||
|
||||
response.sendRedirect(redirectTo);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue