diff --git a/ShopOnline.Web/Pages/Checkout.razor b/ShopOnline.Web/Pages/Checkout.razor index af2045b..3632bb8 100644 --- a/ShopOnline.Web/Pages/Checkout.razor +++ b/ShopOnline.Web/Pages/Checkout.razor @@ -3,66 +3,60 @@
Product | +Price | +
---|---|
@item.Quantity x @item.ProductName | +@item.TotalPrice.ToString("C") | +
Total | +@PaymentAmount.ToString("C") | +
Product | -Price | -
---|---|
@item.Quantity x @item.ProductName | -@item.TotalPrice.ToString("C") | -
Total | -@PaymentAmount.ToString("C") | -
You currently have no items in your shopping cart.
- } -You currently have no items in your shopping cart.
}This component demonstrates fetching data from the server.
- -@if (forecasts == null) -{ -Loading...
-} -else -{ -Date | -Temp. (C) | -Temp. (F) | -Summary | -
---|---|---|---|
@forecast.Date.ToShortDateString() | -@forecast.TemperatureC | -@forecast.TemperatureF | -@forecast.Summary | -