12345678910111213141516171819202122232425262728293031323334353637 |
- @model EMIS.ViewModel.FeeManage.RefundApproveView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Entities;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "Approve";
- }
- @section scripts{
- <script type="text/javascript">
- function RefundApprove() {
- $(document.forms[0]).submit();
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("RefundApprove", "StudentFee", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
- {
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- </div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
- @Html.ContextMenuBar("Approve")
- </div>
- </div>
- <div class="search_list popupWindowContent">
- <table cellpadding="0" cellspacing="0" id="universitytable">
- @Html.HiddenFor(x => x.ExaminationRegistrationIDs)
- <tr>
- <td>审核意见:</td>
- <td colspan="2">@Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_RefundFeeApproval, x => x.ApproveStatus)</td>
- </tr>
- </table>
- </div>
- }
- </div>
|