From 9a009b73dc2e2da1b962bcf77e71ea0bdb4fffc5 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Fri, 8 Nov 2024 14:20:49 +0800 Subject: [PATCH] fix the incorrect parameter when jumping from the statistics page to the transaction list page --- src/views/mobile/statistics/TransactionPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/mobile/statistics/TransactionPage.vue b/src/views/mobile/statistics/TransactionPage.vue index 90c648e4..13d98fb5 100644 --- a/src/views/mobile/statistics/TransactionPage.vue +++ b/src/views/mobile/statistics/TransactionPage.vue @@ -608,7 +608,7 @@ export default { return formatPercent(value, precision, lowPrecisionValue); }, getTransactionItemLinkUrl(item) { - return `/transaction/list?${this.statisticsStore.getTransactionListPageParams(statisticsConstants.allAnalysisTypes.CategoricalAnalysis, item)}`; + return `/transaction/list?${this.statisticsStore.getTransactionListPageParams(statisticsConstants.allAnalysisTypes.CategoricalAnalysis, item.id)}`; } } };