AI自动化流量分析工具分享-篝火开物
2026/8/10 9:10:01
function openWechatLoginWindow(url: any) { const wechatLoginUrl = url // 弹框宽高 let width = 600 let height = 500 // 弹框居中 let top = (window.screen.height - 30 - height) / 2 let left = (window.screen.width - 30 - width) / 2 let openWin: any = window.open( wechatLoginUrl, '', 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=yes' ) }