CreatePlan.cshtml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. var schoolYear = ViewData["schoolYear"];
  5. ViewBag.Title = "CreatePlan";
  6. }
  7. @section scripts{
  8. <script src="../../Scripts/Business/TeachingMaterial/StudentsOrder.js" type="text/javascript"></script>
  9. }
  10. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  11. @using (Ajax.BeginForm(new AjaxOptions { Url = "/StudentsOrder/CreatePlan?schoolyearID=" + schoolYear, OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
  12. {
  13. <div class="p_title">
  14. @*<div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  15. 征订计划生成
  16. </div>*@
  17. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("CreatePlan")</div>
  18. </div>
  19. <div class="search_list popupWindowContent">
  20. <table cellpadding="0" cellspacing="0" id="teachersOrdertable">
  21. <tr>
  22. <td>
  23. @Html.Label("学年学期"):
  24. </td>
  25. <td>
  26. @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", SelectedValue = schoolYear })
  27. </td>
  28. </tr>
  29. </table>
  30. </div>
  31. }
  32. </div>