StudentsList.cshtml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @model EMIS.ViewModel.TeachingMaterial.StudentDistributeView
  4. @{
  5. ViewBag.Title = "CreatePlan";
  6. }
  7. @section scripts{
  8. <script src="../../Scripts/Business/TeachingMaterial/StudentDistribute.js" type="text/javascript"></script>
  9. }
  10. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  11. @using (Html.BeginForm())
  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.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown" })
  27. </td>
  28. </tr>
  29. </table>
  30. </div>
  31. }
  32. </div>