|
@@ -1585,8 +1585,13 @@
|
|
|
var $progress = document.getElementById('progress_')
|
|
|
$progress.scrollIntoView()
|
|
|
sessionStorage.setItem('refresh', '1')
|
|
|
- let redirectUrl = '/front/dataExport/toCreateOrderPage/' + dataNode._data.dataInfo._id
|
|
|
- window.location.href = location.origin + redirectUrl + "?from=" + GetQueryString("from")+ "&type=" + dataNode.dataType + "&source=" +GetQueryString("source")
|
|
|
+ var redirectUrl = '/front/dataExport/toCreateOrderPage/' + dataNode._data.dataInfo._id
|
|
|
+ var goHref = location.origin + redirectUrl + "?from=" + GetQueryString("from")+ "&type=" + dataNode.dataType + "&source=" +GetQueryString("source")
|
|
|
+ if (goTemplateData.inIframe) {
|
|
|
+ window.parent.location.href = goHref
|
|
|
+ } else {
|
|
|
+ window.location.href = goHref
|
|
|
+ }
|
|
|
})
|
|
|
function isIE(){
|
|
|
if(!!window.ActiveXObject || "ActiveXObject" in window){
|