Commit ebd59c88 by 宋祥

1.三级以上父级页面号传递错误问题

parent d0f6e774
......@@ -192,8 +192,11 @@
} else {
}
// 当前页面号
let efFormEname = __eiInfo.extAttr[EiConstant.EF_FORM_ENAME];
href = href + (href.indexOf("?") == -1 ? '?' : '&') + "efParentFormEname=" + efFormEname;
let efParentFormEname = __eiInfo.extAttr["efParentFormEname"];
if (!isAvailable(efParentFormEname)) {
efParentFormEname = __eiInfo.extAttr[EiConstant.EF_FORM_ENAME];
}
href = href + (href.indexOf("?") == -1 ? '?' : '&') + "efParentFormEname=" + efParentFormEname;
parameter["href"] = href;
popWindow = divhtml.data("kendoWindow");
popWindow.setOptions({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment