(function () { window.addEventListener('DOMContentLoaded', function() { let url_error_msg = moi.getUrlParam('_error_message'); if(url_error_msg){ alert(url_error_msg) history.replaceState(null, null, moi.removeParam('_error_message',location.href)); } let is_theme_edit = moi.getCookie('is_theme_edit'); if(is_theme_edit == '1' && !moi.getUrlParam("quick_view")) { var msgText = "Currently in Decoration Preview Mode/当前为装修预览模式" let template = document.createElement('div') template.id = 'body_domain_prompt' template.style = `background: #FFEDC9;color:#fff;line-height:22px;font-size:14px;color:#eee;text-align:center;padding:7px 0;position:fixed;left:0;bottom:0;width:100%;z-index:9999999;color: #666666;` template.innerHTML = msgText; document.body.appendChild(template); document.body.style.paddingBottom = '60px' } }) })()