diff --git a/frontend/mobile-app/lib/features/planting/presentation/pages/planting_location_page.dart b/frontend/mobile-app/lib/features/planting/presentation/pages/planting_location_page.dart index d85cfbd4..706806be 100644 --- a/frontend/mobile-app/lib/features/planting/presentation/pages/planting_location_page.dart +++ b/frontend/mobile-app/lib/features/planting/presentation/pages/planting_location_page.dart @@ -132,10 +132,14 @@ class _PlantingLocationPageState extends ConsumerState { cityName: _selectedCityName!, ); - // 2. 确认省市选择 + // 2. 等待5秒后确认省市选择(后端要求等待5秒确认时间) + debugPrint('[PlantingLocationPage] 等待5秒确认时间...'); + await Future.delayed(const Duration(seconds: 5)); + + // 3. 确认省市选择 await plantingService.confirmProvinceCity(widget.orderNo); - // 3. 支付订单 + // 4. 支付订单 await plantingService.payOrder(widget.orderNo); if (mounted) {