一、列表页面
mounted() {
// 监听当前页面的关闭事件
window.onunload = () => {
if (this.childWindow && !this.childWindow.closed) {
this.childWindow.close()
}
}
},
//跳转
handleAdd() {
let routeUrl = this.$router.resolve({
path: '/home/projectContractInput',
query: { type: 'add' },
})
this.childWindow = window.open(routeUrl.href, '_blank')
this.childWindow.onunload = () => {
if (this.childWindow && this.childWindow.closed) {
this.getList()
}
}
},
二、新页面
window.close()
文章来源地址https://www.toymoban.com/news/detail-606058.html
文章来源:https://www.toymoban.com/news/detail-606058.html
到了这里,关于vue中列表页面跳转打开新页面,关闭新页面并刷新列表页面的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!