/**
* 关闭子页面
* @param {*} reflash 是否刷新父页面
*/
export function closeChildPage(reflash) {
if (reflash) window.opener.parent.location.reload() // 刷新父页面
window.opener = null
window.open('', '_self')
window.close()
}
标签:reflash,JS,window,opener,刷新,页面
From: https://www.cnblogs.com/jia-zq/p/17169591.html