@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; } @section scripts{ }
@Html.Position()
查询条件
@Html.PositionCondition()
  • @EMIS.Utility.RSL.Get("Campus"):
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Campus/CampusDropdownListBanid"), ID = "CampusDropdown", Name = "CampusDropdown", OnSelect = "QueryCampusDropdownList" }, new Dictionary { { "data-condition", "dgDutyList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/College/CollegeDropdownListBanid"), ID = "CollegeDropdown", Name = "CollegeDropdown", OnSelect = "QueryCollegeDropdownList" }, new Dictionary { { "data-condition", "dgDutyList" } })
  • 教研室:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Department/DepartmentDropdownListBanid"), ID = "DepartmentDropdown", Name = "DepartmentDropdown", OnSelect = "QueryDepartmentDropdownList" }, new Dictionary { { "data-condition", "dgDutyList" } })
  • 时间段:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Activitie/TimesSegmentDropdownListBanid"), ID = "TimesSegmentDropdown", Name = "TimesSegmentDropdown", OnSelect = " QueryTimesSegmentDropdownList" }, new Dictionary { { "data-condition", "dgDutyList" } })
值班安排列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="DutyID"}, new LinkButtonColumn { FieldName="LoginID", HeaderText="工作证号", Align=AlignStyle.Center, Handle="edit", Width = 0.06}, new BoundFieldColumn { FieldName="UserName", HeaderText="值班人名", Align=AlignStyle.Center, Width = 0.05 }, new BoundFieldColumn { FieldName="DutyTime", HeaderText="值班日期",Formatter=Formatter.OnlyYearMonthDay, Align=AlignStyle.Center, Width = 0.08 }, new BoundFieldColumn { FieldName="StartDate", HeaderText="开始时间", Align=AlignStyle.Center, Width = 0.08 }, new BoundFieldColumn { FieldName="EndDate", HeaderText="结束时间", Align=AlignStyle.Center, Width = 0.08 }, new BoundFieldColumn { FieldName="TimesSegmentName", HeaderText="时间段", Align=AlignStyle.Center, Width = 0.03 }, new BoundFieldColumn { FieldName="DepartmentName", HeaderText="教研室", Align=AlignStyle.Center, Width = 0.12 }, new BoundFieldColumn { FieldName="Description", HeaderText="任务描述", Align=AlignStyle.Center, Width = 0.15 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Duty/List"), ID = "dgDutyList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })