@model EMIS.ViewModel.FeeManage.RefundApproveView @using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "Approve"; } @section scripts{ }
@using (Html.BeginForm("RefundApprove", "StudentFee", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.ContextMenuBar("Approve")
@Html.HiddenFor(x => x.ExaminationRegistrationIDs)
审核意见: @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_RefundFeeApproval, x => x.ApproveStatus)
}