const link = this.$router.resolve({
name: 'PaymentDetailsList', // 要跳转的路由
query: { platBatchNo: taskInfo.batchNo }
})
if (link.href === "#/") {
this.$message.error('您不具备访问此功能的权限,请咨询相关人员')
} else {
window.open(link.href, "_blank"); // 打开新窗口
}
const link = this.$router.resolve({
name: "ProfessionalDetail", // 要跳转的路由
})
if (link.href === "#/") {
this.$message.error('您不具备访问此功能的权限,请咨询相关人员')
} else {
this.$router.push({
name: "ProfessionalDetail",
query: { custNo: row.custNo }
});
}
网友评论