CreatePlan.cshtml 1.6 KB

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