@using System.Web.UI.WebControls @using WX.CRM.WebHelper; @using WX.CRM.WEB.Handler @model WX.CRM.WEB.ViewModel.Level2.PayOpenOrder @{ ViewBag.Title = "L2CreateActiveOrder"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; } @Styles.Render("~/Content/data_grid_list.css")
@Html.ToolButtonPlain("btnSave", "icon-save", "创建订单", false, "")
@using (Html.BeginForm("L2PayOrderOpen", "Leve2Order", null, FormMethod.Post, new { Id = "CreateForm" })) {
@Html.ValidationSummary(true)
@Html.LabelFor(m => m.userName) @Html.TextBoxFor(m => m.userName) @Html.ValidationMessageFor(m => m.userName)
@Html.LabelFor(m => m.businessType) @Html.RadioButtonListFor(m => m.businessType, new List() { new SelectListItem { Text = "业务版", Value = "2" }, new SelectListItem { Text = "ZD", Value = "1" }, new SelectListItem { Text = "OEM", Value = "3", Selected = true } }, RepeatDirection.Vertical) @Html.ValidationMessageFor(m => m.businessType)
客户ID:
手机号码: @Html.ValidationMessageFor(m => m.mobile)
@Html.LabelFor(m => m.fullName) @Html.TextBoxFor(m => m.fullName) @Html.ValidationMessageFor(m => m.fullName)
产品类型:
@Html.LabelFor(m => m.PayNo) @Html.TextBoxFor(m => m.PayNo, htmlAttributes: new { Value = "auto" }) @Html.ValidationMessageFor(m => m.PayNo)
@Html.LabelFor(m => m.PayPrice) @Html.TextBoxFor(m => m.PayPrice) @Html.ValidationMessageFor(m => m.PayPrice)
开通天数:
@Html.LabelFor(m => m.PayType) @Html.DropDownList("PayType", new List() { new SelectListItem(){Text="银行转账",Value="3",Selected=true}})
@Html.LabelFor(m => m.PayMark) @Html.TextAreaFor(m => m.PayMark) @Html.ValidationMessageFor(m => m.PayMark)
  模块Id   模块名称  
}