@model trade_confirm_rule @{ ViewBag.Title = "限额设置"; Layout = "~/Views/Shared/_InfoLayout.cshtml"; } @section CSS{ } @section JS { } @using (Html.BeginForm("tradeConfirmRuleEdit", "trade_confirm_rule", FormMethod.Post, new { id = "tradeConfirmRuleEditForm" })) {
限额设置 @Html.HiddenFor(model => model.id) @Html.MyTextFor(model => model.Name, true) @Html.MyDropdownFor1(model => model.TargetType, tradeController.GetLimitTargetTypes(), null, "", false) @Html.MyDropdownFor1(model => model.ScopeType, tradeController.GetLimitScopeTypes(),null, "", false) @Html.MyDropdownFor1(model => model.TimeType, tradeController.GetLimitTimeTypes(), null, "", false) @Html.MyDecimalFor(model => model.UpLimit) @Html.MyDecimalFor(model => model.DownLimit) @Html.MyDropdownFor1(model => model.ValidState, ConsGlobal.ValidStates(), null, "", false)
@MyControls.Btn("保存", "saveTradeConfirmRule()") @MyControls.Btn("关闭", "closeTradeConfirmRuleEditWindow()")
}