//在线咨询经纪人
//在线咨询经纪人
function LineConsult() {
document.location = "js://lineconsult?AgentSysCode=" + agentCode + "&AgentName=" + agentName + "&Mobile=" + agentPhone + "&AgentID=" + agentID;
window.webkit.messageHandlers.lineconsult.postMessage({
'AgentSysCode': agentCode,
'AgentName': agentName,
'Mobile': agentPhone,
'AgentID': agentID
});
}
//电话联系经纪人
function Mobile() {
ClickTel(); //记录埋点
document.location = "js://mobile?Mobile=" + agentPhone;
window.webkit.messageHandlers.mobile.postMessage({Mobile: agentPhone});
}
function Share_vr() {
document.location = "js://shareVR";
window.webkit.messageHandlers.shareVR.postMessage({});
}
function Back() {
document.location = "js://back";
window.webkit.messageHandlers.back.postMessage({});
}