@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; ComboGridOptions cgopExaminationBatch = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationBatchID", ID = "cgExaminationBatch", Name = "cgExaminationBatch", OnSelect = "queryBatch", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationBatchViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryBatch", } }; ComboGridOptions cgopExaminationType = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationTypeID", Name = "cgExaminationType", ID = "cgExaminationType", OnSelect = "queryType", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="考试类型", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationTypeViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryType", } }; ComboGridOptions cgopExaminationProject = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationProjectID", Name = "cgExaminationProject", ID = "cgExaminationProject", OnSelect = "reload", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryProject", } }; ComboGridOptions cgopCampus = new ComboGridOptions { TextField = "Name", ValueField = "CampusID", ID = "cgCampus", Name = "cgCampus", OnSelect = "queryCollege", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center } }, //OnLoadSuccessFun = "reload", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Campus/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; ComboGridOptions cgopCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", ID = "cgCollege", Name = "cgCollege", OnSelect = "queryGrademajor", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center } }, //OnLoadSuccessFun = "reload", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/ListOnlyCollege"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; ComboGridOptions cgopClassmajor = new ComboGridOptions { TextField = "Name", ValueField = "ClassmajorID", Name = "cgClassmajor", ID = "cgClassmajor", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Classmajor/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; } @section scripts{ }
@Html.Position()
@Html.PositionCondition()
@Html.Hidden("SelectedID")
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "querySchoolYear", OnLoadSuccess = "querySchoolYear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 考试批次:
  • @Html.ComboGrid(cgopExaminationBatch, new Dictionary { { "data-condition", "dgStudentList" } })
  • 考试类型:
  • @Html.ComboGrid(cgopExaminationType, new Dictionary { { "data-condition", "dgStudentList" } })
  • 项目名称:
  • @Html.ComboGrid(cgopExaminationProject, new Dictionary { { "data-condition", "dgStudentList" } })
@*
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "schoolyearSelect", SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnLoadSuccess = "schoolyearChange" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 考试批次:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationBatch", Name = "ddlExaminationBatch", OnSelect = "examinationBatchSelect", OnLoadSuccess = "examinationBatchChange" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 考试类型:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationType", Name = "ddlExaminationType", OnSelect = "examinationTypeSelect", OnLoadSuccess = "examinationTypeChange" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 项目名称:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationProject", Name = "ddlExaminationProject", OnSelect = "reload", }, new Dictionary { { "data-condition", "dgStudentList" } })
*@
  • 校区:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "ddlSchoolArea", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(cgopCollege, new Dictionary { { "data-condition", "dgStudentList" } })
  • 年级:
  • @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlYear", Name = "ddlYear", OnSelect = "queryGrademajor" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 班级名称:
  • @Html.ComboGrid(cgopClassmajor, new Dictionary { { "data-condition", "dgStudentList" } })
  • 缴费状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EX_ExaminationRegistrationStatus, new DropdownListOptions { ID = "PayRecordStatus", Name = "PayRecordStatus", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 是否已确认:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { ID = "IsConfirm", Name = "IsConfirm", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentList" } })
报名名单列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationRegistrationID",Width=20}, new BoundFieldColumn { FieldName="ExaminationRegistrationConfirmID", HeaderText="确认单ID", Align=AlignStyle.Center, IsHidden = true }, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center,Width=100}, new BoundFieldColumn { FieldName="ExaminationBatchName", HeaderText="考试批次", Align=AlignStyle.Center,Width=120}, new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="项目名称", Align=AlignStyle.Center,Width=120 }, new BoundFieldColumn { FieldName="SchoolAreaName", HeaderText="校区", Align=AlignStyle.Center,Width=80 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText="院系所", Align=AlignStyle.Center,Width=120 }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级", Align=AlignStyle.Center,Width=120 }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center,Width=60 }, new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center,Width=40 }, new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center,Width=60 }, new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号码", Align=AlignStyle.Center,Width=160 }, new BoundFieldColumn { FieldName="FeeTypeName", HeaderText="报名项目", Align=AlignStyle.Center, Width=100 }, new BoundFieldColumn { FieldName="PayFee", HeaderText="金额", Align=AlignStyle.Center, Width=40}, new BoundFieldColumn { FieldName="RecordStatusStr", HeaderText="缴费状态", Align=AlignStyle.Center, Width=40 }, //new BoundFieldColumn { FieldName="IsOnlinePayStr", HeaderText="缴费方式", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="WechatOrderID", HeaderText="微信订单号", Align=AlignStyle.Center, Width=200 }, new BoundFieldColumn { FieldName="RefundOrderID", HeaderText="微信退款单号", Align=AlignStyle.Center, Width=200 }, new BoundFieldColumn { FieldName="ExaminationRegistrationConfirmNo", HeaderText="确认单号", Align=AlignStyle.Center, Width=100}, new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=150, OverflowLength=15}, }, IsAutoLoad = false, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/List"), ID = "dgStudentList", IsPagination = true, PageSize = 100, IsShowRowNumbers = true, IsSingleSelect = false })