@model ZoomLa.Model.M_Payment @{ Layout = "/Views/Cart/_layout.cshtml"; string PayMethod = Context.Request.GetParam("method"); M_UserInfo mu = ViewBag.mu; } @section head{ 在线支付_@Call.SiteName} @section content{

在线支付

订单提交成功,请您尽快付款!
订单号:@Model.PaymentNum
应付金额:@Model.MoneyReal.ToString("F2")
@(ViewBag.vname+":"+ViewBag.vmoney)
支付方式: @ViewBag.vname 重新选择 @if (string.IsNullOrEmpty(PayMethod)) {
} else//虚拟币支付 {
@if (!string.IsNullOrEmpty(mu.PayPassWord)) {
} else {
}
}
登录平台支付
请您在新打开的支付平台页面进行支付,支付完成前请不要关闭该窗口
@MvcHtmlString.Create(ViewBag.formHtml)
} @section script{ }