@using WX.CRM.Model.Entity; @{ ViewBag.Title = "支付信息"; Layout = "~/Views/Shared/_content.cshtml"; }
@*
银行信息:
开户行:招商银行股份有限公司北京东四环支行
户 名:东高(北京)科技有限公司
账 号:110905783010611
*@ @{ var lastPrice = "0"; var usePrice = "0"; CRM.Core.DTO.retMsg ret = ViewBag.Ret; //var list = ViewBag.OrderDepositList as IEnumerable; if (ret.result) { lastPrice = ret.retmsg.lastprice.ToString(); usePrice = ret.retmsg.useprice.ToString(); } else { lastPrice = "获取错误"; } 剩余金额: ¥@lastPrice已使用金额:¥@usePrice }

@{ string orderstatus = ViewBag.OrderStatus; string[] canPayStatus = { "180", "190", "195" }; } @if (canPayStatus.Contains(orderstatus))//新订单才能进行提交 { 添加支付二维码 添加银行转账 使用金额 } 刷新
@*
@{ var list = ViewBag.OrderDepositList as IEnumerable; if (list.Any()) { var count = list.Count().ToString(); var sumPrice = list.Sum(p => p.PAYPRICE).ToString(); 有 @count 笔订金可用,共 @sumPrice 元 } }
*@