<apex:page showHeader="false" sidebar="false" id="test02" title="3.关联已有询价">
|
<apex:includeLightning />
|
<div style="width:100%;height:100%;" id="test02Container" />
|
<script>
|
$Lightning.use("c:test02App", function () {
|
$Lightning.createComponent("c:tEnquiry",
|
{},
|
"test02Container",
|
function (cmp) {
|
console.log('Component created, do something cool here');
|
});
|
});
|
|
var interval = setInterval(()=>{
|
var hrefStr = window.location.href;
|
if (hrefStr.indexOf("Refresh") != -1) {
|
var arr = hrefStr.split("==");
|
window.opener.parent.location.href = "/"+arr[1];
|
window.location.hash = '';
|
}
|
},1000);
|
</script>
|
|
</apex:page>
|