From 6d08db54a5c07e3092b5ea9b379c3993359bd256 Mon Sep 17 00:00:00 2001 From: peima Date: Sat, 1 Aug 2026 02:38:15 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B8=85=E7=90=86=20checkout=20mainBo?= =?UTF-8?q?dy=20=E7=9A=84=20'aaa:'=20=E8=B0=83=E8=AF=95=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/widgets/desktop/desktop_checkout.dart | 1 - lib/widgets/mobile/mobile_checkout.dart | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/widgets/desktop/desktop_checkout.dart b/lib/widgets/desktop/desktop_checkout.dart index 8fc9c84..03ff458 100644 --- a/lib/widgets/desktop/desktop_checkout.dart +++ b/lib/widgets/desktop/desktop_checkout.dart @@ -293,7 +293,6 @@ class DesktopCheckoutState extends State with SingleTickerProvi addAutomaticKeepAlives: true, itemBuilder: (BuildContext context, int position) { var deliveryTimeInSeconds = (cartInfo!.businessInfo!.shippingTime ?? 0) * 60 + (durationInTraffic != null ? durationInTraffic!.value ?? 0 : 0); - print('aaa: $deliveryTimeInSeconds'); DateTime now = DateTime.now(); var formatter = DateFormat('H:mm'); String deliveryAt = formatter.format(now.add(Duration(seconds: deliveryTimeInSeconds))); diff --git a/lib/widgets/mobile/mobile_checkout.dart b/lib/widgets/mobile/mobile_checkout.dart index 92bda21..ebb76c2 100644 --- a/lib/widgets/mobile/mobile_checkout.dart +++ b/lib/widgets/mobile/mobile_checkout.dart @@ -268,7 +268,6 @@ class MobileCheckoutState extends State with SingleTickerProvide addAutomaticKeepAlives: true, itemBuilder: (BuildContext context, int position) { var deliveryTimeInSeconds = cartInfo!.businessInfo!.shippingTime! * 60 + (durationInTraffic != null ? durationInTraffic!.value ?? 0 : 0); - print('aaa: $deliveryTimeInSeconds'); DateTime now = DateTime.now(); var formatter = DateFormat('H:mm'); String deliveryAt = formatter.format(now.add(Duration(seconds: deliveryTimeInSeconds)));