@model WX.CRM.Model.Entity.WX_SZZYORDER_REFUND @using WX.CRM.WebHelper; @{ ViewBag.Title = "退款订单录入"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("Add", "SzzyOrderRefund", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true)
订单ID:
退款金额:
退款时间: @Html.WdatePickerText("REFUNDTIME", "")
备注: @Html.TextAreaFor(m => m.REMARK, new { style = "width:300px;height:50px" })
}