@model ConfirmsTemplate @{ ViewBag.Title = "客户确认书模板 | 编辑"; Layout = "~/Views/Shared/_InfoLayout.cshtml"; } @section CSS{ } @section JS{ }
@Html.HiddenFor(model => model.meta_id) @if (Model.Clients != null && Model.Clients.Count > 0) { @Html.HiddenFor(model => model.ClientId) @Html.MyTextFor(model => model.ClientName) @Html.MyTextFor(model => model.fileType) } else {
@Html.MyDropdownFor(model => model.fileType, new List() {new SelectListItem{ Text = "交易确认书",Value = "交易确认书"} ,new SelectListItem{ Text = "结算确认书",Value = "结算确认书" } ,new SelectListItem{ Text = "邮件模板",Value = "邮件模板" } }, appendBlank: false) }
@MyControls.Btn("保存", "saveTemplate()") @MyControls.Btn("关闭", "layer.closeMe()")