List.cshtml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "List";
  5. ComboGridOptions cgopCourse = new ComboGridOptions
  6. {
  7. TextField = "CourseName",
  8. ValueField = "CoursematerialID",
  9. Name = "CoursematerialIDDropdownGridBo",
  10. ID = "CoursematerialIDDropdownGridBo",
  11. OnSelect = "QueryCoursematerialComboGrid",
  12. GridOptions = new DataGridOptions
  13. {
  14. Columns = new List<DataGridColumn>()
  15. {
  16. // new LinkButtonColumn { FieldName="CourseCode", HeaderText="课程代码", Width=0.1, Align=AlignStyle.Center },
  17. new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, Width=0.2 }
  18. },
  19. IsCheckOnSelect = true,
  20. DataSourceUrl = Url.Content("~/Coursematerial/ListForDropdown"),
  21. IsPagination = true,
  22. IsShowRowNumbers = true,
  23. IsSingleSelect = false
  24. }
  25. };
  26. ComboGridOptions cgopDepartment = new ComboGridOptions
  27. {
  28. TextField = "Name",
  29. ValueField = "DepartmentID",
  30. Name = "DepartmentComboGrid",
  31. ID = "DepartmentComboGrid",
  32. OnSelect = "reload",
  33. GridOptions = new DataGridOptions
  34. {
  35. Columns = new List<DataGridColumn>()
  36. {
  37. // new LinkButtonColumn { FieldName="No", HeaderText="教研室代码", Align=AlignStyle.Center },
  38. new BoundFieldColumn { FieldName="Name", HeaderText="教研室名称", Align=AlignStyle.Center }
  39. },
  40. IsCheckOnSelect = true,
  41. DataSourceUrl = Url.Content("~/Department/List"),
  42. IsPagination = true,
  43. IsShowRowNumbers = true,
  44. IsSingleSelect = false
  45. }
  46. };
  47. }
  48. @section scripts{
  49. <script src="~/Scripts/Business/SelectCourseManage/FreeSelectionCourse.js" type="text/javascript"></script>
  50. }
  51. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  52. @Html.Position()
  53. <div class="p_SearchTitle">
  54. <div style="float: left; margin-left: 10px; font-size: 12px; line-height: 30px;">
  55. 查询条件</div>
  56. </div>
  57. <form id="formQuery" method="post" action="@Url.Content("~/FreeSelectionCourse/Excel")">
  58. @Html.PositionCondition()
  59. <div class="search_keyword">
  60. <div class="search_input">
  61. <ul>
  62. <li class="sn" style="padding-left: 5px;">课程名称:</li>
  63. <li class="sv">
  64. @Html.ComboGrid(cgopCourse, new Dictionary<string, string> { { "data-condition", "dgFreeSelectionCourseList" } })
  65. </li>
  66. <li class="sn" style="padding-left: 5px;">教研室:</li>
  67. <li class="sv">
  68. @Html.ComboGrid(cgopDepartment, new Dictionary<string, string> { { "data-condition", "dgFreeSelectionCourseList" } })
  69. </li>
  70. @*<li class="sn" style="padding-left: 5px;">学期:</li>
  71. <li class="sv">
  72. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Semester, new DropdownListOptions { Name = "DictionarySchoolcode", BindType = DropdownListBindType.SelectAll, OnSelect = "QuerySchoolcodeDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgFreeSelectionCourseList" } })
  73. </li>
  74. <li class="sn" style="padding-left: 5px;">开课学期:</li>
  75. <li class="sv">
  76. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Startterm, new DropdownListOptions { Name = "DictionaryStartterm", BindType = DropdownListBindType.SelectAll, OnSelect = "QueryStarttermDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgFreeSelectionCourseList" } })
  77. </li>*@
  78. <li class="sn" style="padding-left: 5px;">是否启用:</li>
  79. <li class="sv">
  80. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { Name = "DictionaryIsEnable", BindType = DropdownListBindType.SelectAll, OnSelect = "QueryIsEnableDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgFreeSelectionCourseList" } })
  81. </li>
  82. </ul>
  83. </div>
  84. </div>
  85. <div class="p_title">
  86. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  87. 任选课程列表</div>
  88. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("List")</div>
  89. </div>
  90. </form>
  91. @Html.PositionBatchModify()
  92. <div class="search_list">
  93. @Html.DataGrid(new DataGridOptions
  94. {
  95. Columns = new List<DataGridColumn>()
  96. {
  97. new CheckBoxFieldColumn{ HeaderText="", FieldName="FreeSelectionCouseID" },
  98. new LinkButtonColumn { FieldName="CourseCode", HeaderText="课程代码", Align=AlignStyle.Center, Handle="edit", Width=0.06 },
  99. new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, Width=0.12 },
  100. new BoundFieldColumn { FieldName="CourseTypeName", HeaderText="课程类型", Align=AlignStyle.Center, Width=0.05, OverflowLength=5 },
  101. new BoundFieldColumn { FieldName="Credit", HeaderText="学分", Align=AlignStyle.Center, Width=0.02 },
  102. new BoundFieldColumn { FieldName="TheoryCourse", HeaderText="理论学时", Align=AlignStyle.Center, Width=0.04 },
  103. new BoundFieldColumn { FieldName="Practicehours", HeaderText="实践学时", Align=AlignStyle.Center, Width=0.04 },
  104. new BoundFieldColumn { FieldName="Trialhours", HeaderText="实验学时", Align=AlignStyle.Center, Width=0.04 },
  105. new BoundFieldColumn { FieldName="Totalhours", HeaderText="总学时", Align=AlignStyle.Center, Width=0.03 },
  106. new BoundFieldColumn { FieldName="StartEndWeeklyNum", HeaderText="起止周次", Align=AlignStyle.Center, Width=0.04 },
  107. new BoundFieldColumn { FieldName="TeachingModeName", HeaderText="授课方式", Align=AlignStyle.Center, Width=0.06 },
  108. //new BoundFieldColumn { FieldName="SchoolyearNumName", HeaderText="开课学年", Align=AlignStyle.Center, Width=0.04 },
  109. //new BoundFieldColumn { FieldName="SchoolcodeName", HeaderText="学期", Align=AlignStyle.Center, Width=0.02 },
  110. //new BoundFieldColumn { FieldName="StarttermName", HeaderText="开课学期", Align=AlignStyle.Center, Width=0.04 },
  111. //new BoundFieldColumn { FieldName="PeopleNumlower", HeaderText="人数下限", Align=AlignStyle.Center, Width=0.04 },
  112. //new BoundFieldColumn { FieldName="PeopleNumlimit", HeaderText="人数上限", Align=AlignStyle.Center, Width=0.04 },
  113. new BoundFieldColumn { FieldName="DepartmentName", HeaderText="开课教研室", Align=AlignStyle.Center, Width=0.1 },
  114. new BoundFieldColumn { FieldName="IsEnableDesc", HeaderText="是否启用", Align=AlignStyle.Center, Width=0.04 }
  115. },
  116. IsCheckOnSelect = true,
  117. DataSourceUrl = Url.Content("~/FreeSelectionCourse/List"),
  118. ID = "dgFreeSelectionCourseList",
  119. IsPagination = true,
  120. IsShowRowNumbers = true,
  121. IsSingleSelect = false
  122. })
  123. </div>
  124. </div>