//关闭当前页
this.$store.dispatch("tagsView/delView", this.$route);
//路由跳转到编目页面
this.$router.push({
//核心语句
path: 'cataloguing', //跳转的路径
query: {
//路由传参时push和query搭配使用 ,作用时传递参数
data: JSON.stringify(data)
}
});