123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772 |
- @model EMIS.ViewModel.StudentManage.OnlineChecking.CheckingContrastView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controllers.StudentManage.OnlineChecking;
- @{
- ViewBag.Title = "Approve";
- }
- @{
- var listAction = ViewBag.ListAction as List<DropdownListItem>;
- var defaultAction = listAction.FirstOrDefault(x => true);
- var defaultActionValue = (defaultAction == null ? null : defaultAction.Value);
- }
- <style type="text/css">
- .mark
- {
- color: Red;
- }
- </style>
- @section scripts{
- <script src="~/Scripts/Business/StudentManage/OnlineChecking/CheckingApproveSubmit.js" type="text/javascript"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "EMISFunction.FormSuccess",
- OnBegin = "EMISFunction.FormSubmit",
- OnComplete = "EMISFunction.FormComplete"
- }))
- {
- <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("Approve")
- </div>
- </div>
- <div class="search_list">
- @Html.HiddenFor(x => x.StudentContrastID)
- <table id="checkingapprove">
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.PhotoUrl, Model.StudentViewContrast.PhotoUrl)">
- <td>
- @Html.LabelFor(x => x.PhotoUrl):
- </td>
- <td>
- <div><img src="@Model.StudentViewSource.PhotoUrl" width="120" height="150" /></div>
- </td>
- <td>
- <div><img src="@Model.StudentViewContrast.PhotoUrl" width="116" height="150" /></div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentNo, Model.StudentViewContrast.StudentNo)">
- <td>
- @Html.LabelFor(x => x.StudentNo):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.StudentNo)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.StudentNo)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Name, Model.StudentViewContrast.Name)">
- <td>
- @Html.LabelFor(x => x.Name):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Name)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Name)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.SexName, Model.StudentViewContrast.SexName)">
- <td>
- @Html.LabelFor(x => x.SexName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.SexName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.SexName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.BirthDate ?? null), (Model.StudentViewContrast.BirthDate ?? null))">
- <td>
- @Html.LabelFor(x => x.BirthDate):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.BirthDate)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.BirthDate)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.NationName, Model.StudentViewContrast.NationName)">
- <td>
- @Html.LabelFor(x => x.NationName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.NationName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.NationName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.PoliticsName, Model.StudentViewContrast.PoliticsName)">
- <td>
- @Html.LabelFor(x => x.PoliticsName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.PoliticsName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.PoliticsName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentTypeName, Model.StudentViewContrast.StudentTypeName)">
- <td>
- @Html.LabelFor(x => x.StudentTypeName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.StudentTypeName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.StudentTypeName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CertificatesTypeName, Model.StudentViewContrast.CertificatesTypeName)">
- <td>
- @Html.LabelFor(x => x.CertificatesTypeName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.CertificatesTypeName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.CertificatesTypeName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IDNumber, Model.StudentViewContrast.IDNumber)">
- <td>
- @Html.LabelFor(x => x.IDNumber):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.IDNumber)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.IDNumber)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.InSchoolStatusName, Model.StudentViewContrast.InSchoolStatusName)">
- <td>
- @Html.LabelFor(x => x.InSchoolStatusName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.InSchoolStatusName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.InSchoolStatusName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentStatusName, Model.StudentViewContrast.StudentStatusName)">
- <td>
- @Html.LabelFor(x => x.StudentStatusName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.StudentStatusName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.StudentStatusName)
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="specialtyExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapSpecialty();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red; font-size: 12px;" onclick="swapSpecialty();">
- 专业班级信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.GradeName, Model.StudentViewContrast.GradeName)">
- <td>
- @Html.LabelFor(x => x.GradeName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.GradeName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.GradeName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StandardName, Model.StudentViewContrast.StandardName)">
- <td>
- @Html.LabelFor(x => x.StandardName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.StandardName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.StandardName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.EducationName, Model.StudentViewContrast.EducationName)">
- <td>
- @Html.LabelFor(x => x.EducationName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.EducationName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.EducationName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.LearningformName, Model.StudentViewContrast.LearningformName)">
- <td>
- @Html.LabelFor(x => x.LearningformName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.LearningformName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.LearningformName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.LearnSystem ?? null), (Model.StudentViewContrast.LearnSystem ?? null))">
- <td>
- @Html.LabelFor(x => x.LearnSystem):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.LearnSystem)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.LearnSystem)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CollegeName, Model.StudentViewContrast.CollegeName)">
- <td>
- @Html.LabelFor(x => x.CollegeName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.CollegeName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.CollegeName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ClassmajorName, Model.StudentViewContrast.ClassmajorName)">
- <td>
- @Html.LabelFor(x => x.ClassmajorName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.ClassmajorName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.ClassmajorName)
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="profileExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapProfile();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapProfile();">
- 学生扩展信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.UsedName, Model.StudentViewContrast.UsedName)">
- <td>
- @Html.LabelFor(x => x.UsedName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.UsedName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.UsedName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.DirectorName, Model.StudentViewContrast.DirectorName)">
- <td>
- @Html.LabelFor(x => x.DirectorName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.DirectorName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.DirectorName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.LiteracyLevelName, Model.StudentViewContrast.LiteracyLevelName)">
- <td>
- @Html.LabelFor(x => x.LiteracyLevelName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.LiteracyLevelName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.LiteracyLevelName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CultureModelName, Model.StudentViewContrast.CultureModelName)">
- <td>
- @Html.LabelFor(x => x.CultureModelName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.CultureModelName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.CultureModelName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Country, Model.StudentViewContrast.Country)">
- <td>
- @Html.LabelFor(x => x.Country):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Country)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Country)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Place, Model.StudentViewContrast.Place)">
- <td>
- @Html.LabelFor(x => x.Place):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Place)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Place)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BornPlace, Model.StudentViewContrast.BornPlace)">
- <td>
- @Html.LabelFor(x => x.BornPlace):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.BornPlace)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.BornPlace)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.HealthStateName, Model.StudentViewContrast.HealthStateName)">
- <td>
- @Html.LabelFor(x => x.HealthStateName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.HealthStateName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.HealthStateName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BloodGroupName, Model.StudentViewContrast.BloodGroupName)">
- <td>
- @Html.LabelFor(x => x.BloodGroupName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.BloodGroupName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.BloodGroupName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Specialty, Model.StudentViewContrast.Specialty)">
- <td>
- @Html.LabelFor(x => x.Specialty):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Specialty)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Specialty)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Height, Model.StudentViewContrast.Height)">
- <td>
- @Html.LabelFor(x => x.Height):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Height)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Height)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Weight, Model.StudentViewContrast.Weight)">
- <td>
- @Html.LabelFor(x => x.Weight):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Weight)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Weight)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.PlanningGraduateDate ?? null), (Model.StudentViewContrast.PlanningGraduateDate ?? null))">
- <td>
- @Html.LabelFor(x => x.PlanningGraduateDate):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.PlanningGraduateDate)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.PlanningGraduateDate)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IsDreamProjectName, Model.StudentViewContrast.IsDreamProjectName)">
- <td>
- @Html.LabelFor(x => x.IsDreamProjectName):
- </td>
- <td>
- @Html.CheckBoxFor(x => x.StudentViewSource.IsDreamProject, new Dictionary<string, object>() { { "disabled", "true" } })
- </td>
- <td>
- @Html.CheckBoxFor(x => x.StudentViewContrast.IsDreamProject, new Dictionary<string, object>() { { "disabled", "true" } })
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IsProofreadName, Model.StudentViewContrast.IsProofreadName)">
- <td>
- @Html.LabelFor(x => x.IsProofreadName):
- </td>
- <td>
- @Html.CheckBoxFor(x => x.StudentViewSource.IsProofread, new Dictionary<string, object>() { { "disabled", "true" } })
- </td>
- <td>
- @Html.CheckBoxFor(x => x.StudentViewContrast.IsProofread, new Dictionary<string, object>() { { "disabled", "true" } })
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="contactExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapContact();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapContact();">
- 学生联系信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Email, Model.StudentViewContrast.Email)">
- <td>
- @Html.LabelFor(x => x.Email):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Email)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Email)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Mobile, Model.StudentViewContrast.Mobile)">
- <td>
- @Html.LabelFor(x => x.Mobile):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Mobile)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Mobile)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Telephone, Model.StudentViewContrast.Telephone)">
- <td>
- @Html.LabelFor(x => x.Telephone):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Telephone)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Telephone)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ZIPCode, Model.StudentViewContrast.ZIPCode)">
- <td>
- @Html.LabelFor(x => x.ZIPCode):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.ZIPCode)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.ZIPCode)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.WeChatNum, Model.StudentViewContrast.WeChatNum)">
- <td>
- @Html.LabelFor(x => x.WeChatNum):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.WeChatNum)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.WeChatNum)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.QQ, Model.StudentViewContrast.QQ)">
- <td>
- @Html.LabelFor(x => x.QQ):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.QQ)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.QQ)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.HomeAddress, Model.StudentViewContrast.HomeAddress)">
- <td>
- @Html.LabelFor(x => x.HomeAddress):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.HomeAddress)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.HomeAddress)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.WorkUnit, Model.StudentViewContrast.WorkUnit)">
- <td>
- @Html.LabelFor(x => x.WorkUnit):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.WorkUnit)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.WorkUnit)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Address, Model.StudentViewContrast.Address)">
- <td>
- @Html.LabelFor(x => x.Address):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Address)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Address)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Dormitory, Model.StudentViewContrast.Dormitory)">
- <td>
- @Html.LabelFor(x => x.Dormitory):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Dormitory)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Dormitory)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Recipient, Model.StudentViewContrast.Recipient)">
- <td>
- @Html.LabelFor(x => x.Recipient):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Recipient)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Recipient)
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="accountExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapAccount();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapAccount();">
- 学生缴费信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BankName, Model.StudentViewContrast.BankName)">
- <td>
- @Html.LabelFor(x => x.BankName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.BankName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.BankName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CardNo, Model.StudentViewContrast.CardNo)">
- <td>
- @Html.LabelFor(x => x.CardNo):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.CardNo)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.CardNo)
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="recruitExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapRecruit();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapRecruit();">
- 高考招生信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ExamineeNum, Model.StudentViewContrast.ExamineeNum)">
- <td>
- @Html.LabelFor(x => x.ExamineeNum):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.ExamineeNum)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.ExamineeNum)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.AdmissionTicketNo, Model.StudentViewContrast.AdmissionTicketNo)">
- <td>
- @Html.LabelFor(x => x.AdmissionTicketNo):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.AdmissionTicketNo)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.AdmissionTicketNo)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ExamineeTypeName, Model.StudentViewContrast.ExamineeTypeName)">
- <td>
- @Html.LabelFor(x => x.ExamineeTypeName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.ExamineeTypeName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.ExamineeTypeName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.EntranceDate ?? null), (Model.StudentViewContrast.EntranceDate ?? null))">
- <td>
- @Html.LabelFor(x => x.EntranceDate):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.EntranceDate)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.EntranceDate)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.Score ?? null), (Model.StudentViewContrast.Score ?? null))">
- <td>
- @Html.LabelFor(x => x.Score):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Score)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Score)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.EntranceWayName, Model.StudentViewContrast.EntranceWayName)">
- <td>
- @Html.LabelFor(x => x.EntranceWayName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.EntranceWayName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.EntranceWayName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.FeaturesName, Model.StudentViewContrast.FeaturesName)">
- <td>
- @Html.LabelFor(x => x.FeaturesName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.FeaturesName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.FeaturesName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.TerritorialName, Model.StudentViewContrast.TerritorialName)">
- <td>
- @Html.LabelFor(x => x.TerritorialName):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.TerritorialName)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.TerritorialName)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Area, Model.StudentViewContrast.Area)">
- <td>
- @Html.LabelFor(x => x.Area):
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewSource.Area)
- </td>
- <td>
- @Html.DisplayFor(x => x.StudentViewContrast.Area)
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding:1px;height:10px;">
- <div id="otherExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
- background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
- onclick="swapOther();">
- </div>
- <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapOther();">
- 其它信息
- </div>
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Career, Model.StudentViewContrast.Career)">
- <td>
- @Html.LabelFor(x => x.Career):
- </td>
- <td>
- @Html.DisplayTextFor(x => x.StudentViewSource.CardNo)
- </td>
- <td>
- @Html.DisplayTextFor(x => x.StudentViewContrast.CardNo)
- </td>
- </tr>
- <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Remark, Model.StudentViewContrast.Remark)">
- <td>
- @Html.LabelFor(x => x.Remark):
- </td>
- <td>
- @Html.DisplayTextFor(x => x.StudentViewSource.Remark)
- </td>
- <td>
- @Html.DisplayTextFor(x => x.StudentViewContrast.Remark)
- </td>
- </tr>
- <tr>
- <td style="color: red;">
- @Html.LabelFor(x => x.Action):
- </td>
- <td colspan="2">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.None,
- ID = "ddlAction",
- Name = "ddlAction",
- ItemList = listAction,
- SelectedValue = defaultActionValue
- })
- </td>
- </tr>
- <tr>
- <td style="color: red;">
- @Html.LabelFor(x => x.Comment):
- </td>
- <td colspan="2">
- @Html.TextAreaFor(x => x.Comment, new Dictionary<string, object>
- {
- { "style", "width: 98%;min-height: 50px" }
- })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|