@using MySystem.Models; @{Orders editData = ViewBag.data as Orders;} @{ string RightInfo = ViewBag.RightInfo as string; string right = ViewBag.right as string; List> ProductList = ViewBag.ProductList as List>; } 订单详情
订单信息
@ViewBag.MakerCode
@ViewBag.RealName
@editData.RealName
@editData.Mobile
@(editData.Areas+editData.Address)
@editData.TotalPrice
@editData.OrderNo
@ViewBag.PayStatus
@editData.TradeNo
@editData.ChannelAmount
@ViewBag.PayModeCode
@ViewBag.PayMode
@editData.ReturnCode
@editData.ReturnMsg
@editData.PayDate
@ViewBag.SendStatus
@editData.ErpCode
@editData.ErpName
@ViewBag.DeliveryType
@editData.Remark
@editData.SnNos
订单商品
@foreach(Dictionary item in ProductList) {
@item["ProductCode"]
@item["ProductName"]
@item["ProductCount"]
@item["ProductPrice"]
@item["SeoKeyword"]
@item["SeoDescription"]
@item["NormDetail"]
}