const openNewWindow = () => {
// 打开新窗口
let left = (window.screen.width / 2 - 180) / 2 // 新窗口居中
let width = window.screen.width / 2 + 180 // 新窗口的宽度
// 新窗口要设置的参数
let params = `height=${window.screen.height},width=${width},top=0,left=${left},toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=yes,status=no`
window.open(
`/testPage/{参数}`,
'_blank',
params
)
}