1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- @model EMIS.ViewModel.EducationSchedule.EducationSchedulingStopView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- @section scripts{
- <script type="text/javascript">
- var windowID = '@(Request["WindowID"])';
- var educationMissionClassID = '@Model.EducationMissionClassID';
- var schoolyearID = '@Model.SchoolyearID.ToString()';
- var nonSelect = "@DropdownList.SELECT_ALL";
- var isEdit = @(Model.EducationSchedulingStopID != Guid.Empty ? "true" : "false");
- </script>
- <script src="@Url.Content("~/Scripts/Business/SchedulingManage/Scheduling/StopEdit.js")" type="text/javascript"></script>
- }
- <link rel="stylesheet" type="text/css" href="@Url.Content("~/Content/Business/Scheduling/Scheduling.css")" />
- @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
- {
- @Html.HiddenFor(x => x.EducationMissionClassID)
- @Html.HiddenFor(x => x.Weekday)
- @Html.HiddenFor(x => x.CoursesTimeID)
- @Html.HiddenFor(x => x.ClassroomID)
- @Html.HiddenFor(x => x.UserID)
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 停课申请
- </div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Edit")</div>
- </div>
- <div class="search_list popupWindowContent" style="overflow: hidden;">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td>
- <label>@Html.LabelFor(x => x.WeekNum)</label>
- </td>
- <td>
- @Html.DropdownListFor(x => x.WeekNum, new DropdownListOptions
- {
- BindType = DropdownListBindType.PleaseSelect,
- ItemList = Model.ScheduleWeekNumList.OrderBy(x => x).Select(x => new DropdownListItem { Text = x.ToString(), Value = x }).ToList()
- })
- </td>
- </tr>
- </table>
- </div>
- }
|