refactor(frontend): 认种记录汇总中总金额改为总贡献值

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-17 00:33:57 -08:00
parent d424f2a18e
commit 1aaf32cbb3
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ class _PlantingRecordsPageState extends ConsumerState<PlantingRecordsPage> {
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),