diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.framework.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.framework.js index 9837ae5e..c6d54718 100644 --- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.framework.js +++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.framework.js @@ -3558,8 +3558,9 @@ function openRelationDig(obj,value) { }, success : function(msg) { if (msg.result == "ok") { + var browserId = (Math.random() + new Date().getTime()).toString(16).replace(".", ""); window.open("./w?uuid=" + msg.data.uuid+"&teamId" - + "&cmd=com.actionsoft.apps.coe.pal_pl_repository_designer&sid=" + encodeURIComponent($('#sid').val())); + + "&cmd=com.actionsoft.apps.coe.pal_pl_repository_designer&browserId=" + browserId + "&sid=" + encodeURIComponent($('#sid').val())); } } diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js index cc78e20f..1567426d 100755 --- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js +++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js @@ -3809,8 +3809,9 @@ function openRelationDig(obj, value) { if (msg.result == "ok") { //关闭新建按钮 $(".dlg-button button").eq(2).hide(); + var browserId = (Math.random() + new Date().getTime()).toString(16).replace(".", ""); window.open("./w?uuid=" + msg.data.uuid + "&teamId=" + getteamId - + "&cmd=com.actionsoft.apps.coe.pal_pl_repository_designer&sid=" + encodeURIComponent($('#sid').val())); + + "&cmd=com.actionsoft.apps.coe.pal_pl_repository_designer&browserId="+browserId+"&sid=" + encodeURIComponent($('#sid').val())); } }