From 1aaf32cbb31ed33ac72806b666800c76067fbf93 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 17 Jan 2026 00:33:57 -0800 Subject: [PATCH] =?UTF-8?q?refactor(frontend):=20=E8=AE=A4=E7=A7=8D?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=B1=87=E6=80=BB=E4=B8=AD=E6=80=BB=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E6=94=B9=E4=B8=BA=E6=80=BB=E8=B4=A1=E7=8C=AE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/profile/planting_records_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mining-app/lib/presentation/pages/profile/planting_records_page.dart b/frontend/mining-app/lib/presentation/pages/profile/planting_records_page.dart index ac5fba64..ac2e5384 100644 --- a/frontend/mining-app/lib/presentation/pages/profile/planting_records_page.dart +++ b/frontend/mining-app/lib/presentation/pages/profile/planting_records_page.dart @@ -257,7 +257,7 @@ class _PlantingRecordsPageState extends ConsumerState { children: [ _buildSummaryItem('总订单数', summary.totalOrders.toString()), _buildSummaryItem('总认种量', summary.totalTreeCount.toString(), color: _green), - _buildSummaryItem('总金额', formatAmount(summary.totalAmount), color: _orange), + _buildSummaryItem('总贡献值', formatAmount(summary.totalAmount), color: _orange), ], ), const SizedBox(height: 16),