ReceiptSetting.cshtml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @model EMIS.ViewModel.FeeManage.ReceiptView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "Edit";
  6. var url = ViewBag.Url;
  7. }
  8. @section scripts{
  9. <script type="text/javascript" src="~/Scripts/Business/StudentFeeManage/ReceiptSetting.js"></script>
  10. }
  11. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  12. @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
  13. {
  14. <div class="p_title">
  15. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  16. </div>
  17. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Receipt")</div>
  18. </div>
  19. <div class="search_list">
  20. <table cellpadding="0" cellspacing="0">
  21. <tr>
  22. <td>
  23. @Html.LabelFor(x => x.StartNo):
  24. </td>
  25. <td>
  26. @Html.TextBoxFor(x => x.StartNo, new TextBoxOptions { })
  27. </td>
  28. <td>
  29. @Html.LabelFor(x => x.EndNo):
  30. </td>
  31. <td>
  32. @Html.TextBoxFor(x => x.EndNo, new TextBoxOptions { })
  33. </td>
  34. </tr>
  35. </table>
  36. </div>
  37. }
  38. </div>