refactor(frontend): 认种记录汇总中总金额改为总贡献值
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
d424f2a18e
commit
1aaf32cbb3
|
|
@ -257,7 +257,7 @@ class _PlantingRecordsPageState extends ConsumerState<PlantingRecordsPage> {
|
||||||
children: [
|
children: [
|
||||||
_buildSummaryItem('总订单数', summary.totalOrders.toString()),
|
_buildSummaryItem('总订单数', summary.totalOrders.toString()),
|
||||||
_buildSummaryItem('总认种量', summary.totalTreeCount.toString(), color: _green),
|
_buildSummaryItem('总认种量', summary.totalTreeCount.toString(), color: _green),
|
||||||
_buildSummaryItem('总金额', formatAmount(summary.totalAmount), color: _orange),
|
_buildSummaryItem('总贡献值', formatAmount(summary.totalAmount), color: _orange),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue