@using WX.CRM.WebHelper; @using WX.CRM.Common @model WX.CRM.WEB.ViewModel.Level2.UpdateOrderIP @{ ViewBag.Title = "OrderDetail"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "提交", false, "")
@using (Html.BeginForm("ModIp", "L2OrderModIp", null, FormMethod.Post, new { Id = "CreateForm" })) {
订单号 @Html.DisplayTextFor(model => model.OrderId) @Html.HiddenFor(model => model.OrderId)
用户名 @Html.Raw(PhoneHelper.FormatPhoneUserName(Utility.DecryptUrlDecode(Model.Username))) @Html.HiddenFor(model => model.Username)
旧IP @Html.DisplayTextFor(model => model.IP)
新IP @Html.TextBoxFor(model => model.IP) @Html.ValidationMessageFor(m => m.IP)
}