Skip to content

Commit

Permalink
perf(frontend): 单据详情跳转链接调整 TencentBlueKing#8626
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 26852
  • Loading branch information
hLinx committed Dec 16, 2024
1 parent 8f4ee20 commit c7e5ec8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:to="{
name: 'bizTicketManage',
params: {
ticketId: ticketId,
ticketId: Number(ticketId),
},
}">
{{ t('单据') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
page: 'success',
},
query: {
ticket_id: data.id,
ticketId: data.id,
},
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:to="{
name: 'bizTicketManage',
params: {
ticketId: ticketId,
ticketId: Number(ticketId),
},
}">
{{ t('单据') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
page: 'success',
},
query: {
ticket_id: data.id,
ticketId: data.id,
},
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
page: 'success',
},
query: {
ticket_id: data.id,
ticketId: data.id,
},
});
});
Expand Down

0 comments on commit c7e5ec8

Please sign in to comment.