RefundApprove.cshtml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @model EMIS.ViewModel.FeeManage.RefundApproveView
  2. @using Bowin.Web.Controls.Mvc;
  3. @using EMIS.Entities;
  4. @using EMIS.Web.Controls;
  5. @{
  6. ViewBag.Title = "Approve";
  7. }
  8. @section scripts{
  9. <script type="text/javascript">
  10. function RefundApprove() {
  11. $(document.forms[0]).submit();
  12. }
  13. </script>
  14. }
  15. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  16. @using (Html.BeginForm("RefundApprove", "StudentFee", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
  17. {
  18. <div class="p_title">
  19. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  20. </div>
  21. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  22. @Html.ContextMenuBar("Approve")
  23. </div>
  24. </div>
  25. <div class="search_list popupWindowContent">
  26. <table cellpadding="0" cellspacing="0" id="universitytable">
  27. @Html.HiddenFor(x => x.ExaminationRegistrationIDs)
  28. <tr>
  29. <td>审核意见:</td>
  30. <td colspan="2">@Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_RefundFeeApproval, x => x.ApproveStatus)</td>
  31. </tr>
  32. </table>
  33. </div>
  34. }
  35. </div>