fix(mobile-app): 修正认种价格为15831 USDT/棵

与后台 planting-service 保持一致

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-22 20:15:49 -08:00
parent 87b23ee2de
commit c91bfa4952
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ class CreateOrderResponse {
orderNo: json['orderNo'] ?? '',
treeCount: json['treeCount'] ?? 0,
totalAmount: (json['totalAmount'] ?? 0).toDouble(),
pricePerTree: (json['pricePerTree'] ?? 2199).toDouble(),
pricePerTree: (json['pricePerTree'] ?? 15831).toDouble(),
);
}
}

View File

@ -17,7 +17,7 @@ class PlantingQuantityPage extends ConsumerStatefulWidget {
class _PlantingQuantityPageState extends ConsumerState<PlantingQuantityPage> {
/// (USDT)
static const double _pricePerTree = 2199.0;
static const double _pricePerTree = 15831.0;
/// (USDT) - API
double _availableBalance = 0.0;