vue-router 之打开新的页面
1.不传参数let myurl="/contractc-info/detail/" + contType + "/" + scope.row.pk_contract; //是你的自定义的路由字符串拼接let routeData = this.$router.resolve({ path: myurl });window.open(routeData.hre
·
1.不传参数
let myurl="/contractc-info/detail/" + contType + "/" + scope.row.pk_contract; //是你的自定义的路由字符串拼接
let routeData = this.$router.resolve({ path: myurl });
window.open(routeData.href, '_blank');
2.传参数
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
let routeData = this.$router.resolve({ path: '/reportpreview', query: { id: id } });
window.open(routeData.href, '_blank');
更多推荐
已为社区贡献4条内容
所有评论(0)