123456789101112131415161718192021222324252627282930313233343536373839 |
- @model EMIS.ViewModel.FeeManage.ReceiptView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- var url = ViewBag.Url;
- }
- @section scripts{
- <script type="text/javascript" src="~/Scripts/Business/StudentFeeManage/ReceiptSetting.js"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
- {
- <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("Receipt")</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- @Html.LabelFor(x => x.StartNo):
- </td>
- <td>
- @Html.TextBoxFor(x => x.StartNo, new TextBoxOptions { })
- </td>
- <td>
- @Html.LabelFor(x => x.EndNo):
- </td>
- <td>
- @Html.TextBoxFor(x => x.EndNo, new TextBoxOptions { })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|