@model Currency @{ ViewBag.Title = "设置币种 | 编辑"; Layout = "~/Views/Shared/_InfoLayout.cshtml"; } @if (!string.IsNullOrWhiteSpace(Model.CurrencyCode)) { }
@Html.MyTextFor(model => model.CurrencyCode) @Html.MyTextFor(model => model.CurrencyName) @Html.MyTextFor(model => model.CurrencyUnit) @Html.MyTextFor(model => model.CurrencySymbol)
@MyControls.Btn("保存", "saveCurrency()") @MyControls.Btn("关闭", "layer.closeMe()")