Commit cf9dd1e7 authored by 何虹's avatar 何虹 💬

优化参照

parent 33f63f90
...@@ -311,7 +311,12 @@ export default { ...@@ -311,7 +311,12 @@ export default {
for (const key in parms) { for (const key in parms) {
parmsStr += `&${key}=${parms[key]}`; parmsStr += `&${key}=${parms[key]}`;
} }
const url__ = `${startUrl}#${url_}` + parmsStr + "&isInnerDialog=1"; let url__ = "";
if (url.startsWith("http")) {
url__ = `${url_}` + parmsStr + "&isInnerDialog=1";
} else {
url__ = `${startUrl}#${url_}` + parmsStr + "&isInnerDialog=1";
}
this.dialogIframeSrc = url__; this.dialogIframeSrc = url__;
this.dialogIframeVisible = true; this.dialogIframeVisible = true;
}, },
......
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