@using System.Data @using ZoomLa.Common @using ZoomLa.BLL.Shop @model ZoomLaCMS.Models.Cart.VM_Cart @{ Layout = "_layout.cshtml"; } @section head{购物车_@(Call.SiteName) } @section content{

加入购物车

@foreach (DataRow store in Model.StoreDT.Rows) { DataTable proDT = Model.GetCartDTByStore(Convert.ToInt32(store["ID"])); if (proDT.Rows.Count < 1) { continue; } @foreach (DataRow item in proDT.Rows) { Model.dr = item; if (DataConverter.CLng(item["ProClass"]) == 2) { @Html.Partial("Cart_ItemSuit") } else { @Html.Partial("Cart_Item") } } }
商品 单价 数量 状态 小计 操作
数量: 总价:@Model.TotalPrice.ToString("F2")(不含邮费)
@**@
商品数量不能大于200
数量: 总价:@Model.TotalPrice.ToString("F2")
} @section script{ }