@model EMIS.ViewModel.Students.StudentRecordView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@Html.Position()
为保持后续报名时个人信息的准确性,请及时进行信息的更新确认,如发现不可修改的信息发生错误时,请联系系统管理员,@(EMIS.Utility.RSL.Get("LoginBottomLine2"))
@Html.ContextMenuBar("Record")
@using (Html.BeginForm("Record", "StudentRecord", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.HiddenFor(x => x.UserID) @Html.HiddenFor(x => x.LoginID)·. 0 @**@ @**@ @**@ @**@ @**@ @**@
@Html.LabelFor(x => x.CertificatesType): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_CertificatesType, x => x.CertificatesType, new DropdownListOptions { IsEnabled = false }) @Html.LabelFor(x => x.PhotoUrl):
@Html.SingleUploaderFor(x => x.PhotoUrl, new Dictionary { { "style", "width:150px;" }, { "accept", "image/png,image/jpeg,image/gif" } })
照片要求:照片为近期、正面、免冠、白底彩色证件照,JPG格式,照片大小为50-200K
@Html.LabelFor(x => x.IDNumber): @Model.IDNumber @*@Html.HiddenFor(x => x.IDNumber)*@ @*@Html.TextBoxFor(x => x.IDNumber)*@
@Html.LabelFor(x => x.UserName): @Model.UserName @Html.HiddenFor(x => x.UserName) @*@Html.TextBoxFor(x => x.UserName)*@
@Html.LabelFor(x => x.UsedName): @Html.TextBoxFor(x => x.UsedName)
@Html.LabelFor(x => x.Sex): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_Sex, x => x.Sex) @Html.LabelFor(x => x.Nation): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_Nation, x => x.Nation)
@Html.LabelFor(x => x.BirthDate): @Html.TextBoxFor(x => x.BirthDate, new TextBoxOptions { TextBoxType = TextBoxType.Date }) @Html.LabelFor(x => x.Politics): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_Politics, x => x.Politics)
联系信息区
@Html.LabelFor(x => x.Email): @Html.TextBoxFor(x => x.Email) @Html.LabelFor(x => x.QQ): @Html.TextBoxFor(x => x.QQ)
@Html.LabelFor(x => x.Mobile): @Html.TextBoxFor(x => x.Mobile) @Html.LabelFor(x => x.HomeAddress): @Html.TextBoxFor(x => x.HomeAddress)
@Html.LabelFor(x => x.WorkUnit): @Html.TextBoxFor(x => x.WorkUnit) @Html.LabelFor(x => x.Zipcode): @Html.TextBoxFor(x => x.Zipcode)
专业班级区
@Html.LabelFor(x => x.GradeName): @Model.GradeName @Html.LabelFor(x => x.GradeCode): @Model.GradeCode
@Html.LabelFor(x => x.ClassName): @Model.ClassName @Html.LabelFor(x => x.LearnSystem): @Model.LearnSystem
@Html.LabelFor(x => x.No): @Model.No @Html.LabelFor(x => x.EducationID): @Html.DictionaryItemName(Model.EducationID, "CF_Education")
@Html.LabelFor(x => x.LearningformID): @Html.DictionaryItemName(Model.LearningformID, "CF_Learningform") @Html.LabelFor(x => x.LearningstyleID): @Html.DictionaryItemName(Model.LearningstyleID, "CF_Learningform")
补充信息区
@Html.LabelFor(x => x.CultureModel): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_Culture, x => x.CultureModel)
@Html.LabelFor(x => x.StudentType): @Html.DictionaryItemName(Model.StudentType, "CF_STUDENTTYPE") @Html.LabelFor(x => x.StudentStatus): @Html.DictionaryItemName(Model.StudentStatus, "CF_STUDENTSTATUS")
高考招生信息区
@Html.LabelFor(x => x.EntranceDate): @Html.TextBoxFor(x => x.EntranceDate, new TextBoxOptions { TextBoxType = TextBoxType.Date }) @Html.LabelFor(x => x.EntranceWay): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_EntranceWay, x => x.EntranceWay)
@Html.LabelFor(x => x.ExamineeNum): @Html.TextBoxFor(x => x.ExamineeNum)
@Html.LabelFor(x => x.ExamineeType): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_EXAMINEETYPE, x => x.ExamineeType) @Html.LabelFor(x => x.Features): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_Features, x => x.Features)
@Html.LabelFor(x => x.Score): @Html.TextBoxFor(x => x.Score) @Html.LabelFor(x => x.Area): @Html.TextBoxFor(x => x.Area) @Html.LabelFor(x => x.Territorial): @Html.TextBoxFor(x => x.Territorial)
@Html.LabelFor(x => x.Place): @Html.TextBoxFor(x => x.Place)
@Html.LabelFor(x => x.BornPlace): @Html.TextBoxFor(x => x.BornPlace)
个人附加信息区
@Html.LabelFor(x => x.Healthy): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_HealthState, x => x.Healthy) @Html.LabelFor(x => x.Specialty): @Html.TextBoxFor(x => x.Specialty)
@Html.LabelFor(x => x.Height): @Html.TextBoxFor(x => x.Height) @Html.LabelFor(x => x.Weight): @Html.TextBoxFor(x => x.Weight)
学生缴费信息填写
@Html.LabelFor(x => x.BankName): @Html.TextBoxFor(x => x.BankName) @Html.LabelFor(x => x.CardNo): @Html.TextBoxFor(x => x.CardNo)
@Html.LabelFor(x => x.Recipient): @Html.TextBoxFor(x => x.Recipient)
其他信息区
@Html.LabelFor(x => x.PlanningGraduateDate): @Html.DisplayFor(x => x.PlanningGraduateDate) @Html.LabelFor(x => x.Remarks): @Model.Remarks
}