Skip to content

Commit

Permalink
fix(frontend): 个人工作台再次提单业务错乱 TencentBlueKing#7766
Browse files Browse the repository at this point in the history
  • Loading branch information
hLinx authored and jinquantianxia committed Nov 7, 2024
1 parent 34d8c0b commit e2cb8aa
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,14 @@
name = ticketTypeRouteNameMap[props.data.ticket_type];
}
if (name) {
router.push({
const { href } = router.resolve({
name,
query: {
ticketId: props.data.id,
ticketType: props.data.ticket_type,
},
});
window.open(href.replace(/^\/(\d+)/, `${props.data.bk_biz_id}`));
}
};
Expand Down

0 comments on commit e2cb8aa

Please sign in to comment.