Approve.cshtml 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. @model EMIS.ViewModel.StudentManage.OnlineChecking.CheckingContrastView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @using EMIS.Web.Controllers.StudentManage.OnlineChecking;
  5. @{
  6. ViewBag.Title = "Approve";
  7. }
  8. @{
  9. var listAction = ViewBag.ListAction as List<DropdownListItem>;
  10. var defaultAction = listAction.FirstOrDefault(x => true);
  11. var defaultActionValue = (defaultAction == null ? null : defaultAction.Value);
  12. }
  13. <style type="text/css">
  14. .mark
  15. {
  16. color: Red;
  17. }
  18. </style>
  19. @section scripts{
  20. <script src="~/Scripts/Business/StudentManage/OnlineChecking/CheckingApproveSubmit.js" type="text/javascript"></script>
  21. }
  22. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  23. @using (Ajax.BeginForm(new AjaxOptions
  24. {
  25. OnSuccess = "EMISFunction.FormSuccess",
  26. OnBegin = "EMISFunction.FormSubmit",
  27. OnComplete = "EMISFunction.FormComplete"
  28. }))
  29. {
  30. <div class="p_title">
  31. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;"></div>
  32. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  33. @Html.ContextMenuBar("Approve")
  34. </div>
  35. </div>
  36. <div class="search_list">
  37. @Html.HiddenFor(x => x.StudentContrastID)
  38. <table id="checkingapprove">
  39. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.PhotoUrl, Model.StudentViewContrast.PhotoUrl)">
  40. <td>
  41. @Html.LabelFor(x => x.PhotoUrl):
  42. </td>
  43. <td>
  44. <div><img src="@Model.StudentViewSource.PhotoUrl" width="120" height="150" /></div>
  45. </td>
  46. <td>
  47. <div><img src="@Model.StudentViewContrast.PhotoUrl" width="116" height="150" /></div>
  48. </td>
  49. </tr>
  50. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentNo, Model.StudentViewContrast.StudentNo)">
  51. <td>
  52. @Html.LabelFor(x => x.StudentNo):
  53. </td>
  54. <td>
  55. @Html.DisplayFor(x => x.StudentViewSource.StudentNo)
  56. </td>
  57. <td>
  58. @Html.DisplayFor(x => x.StudentViewContrast.StudentNo)
  59. </td>
  60. </tr>
  61. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Name, Model.StudentViewContrast.Name)">
  62. <td>
  63. @Html.LabelFor(x => x.Name):
  64. </td>
  65. <td>
  66. @Html.DisplayFor(x => x.StudentViewSource.Name)
  67. </td>
  68. <td>
  69. @Html.DisplayFor(x => x.StudentViewContrast.Name)
  70. </td>
  71. </tr>
  72. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.SexName, Model.StudentViewContrast.SexName)">
  73. <td>
  74. @Html.LabelFor(x => x.SexName):
  75. </td>
  76. <td>
  77. @Html.DisplayFor(x => x.StudentViewSource.SexName)
  78. </td>
  79. <td>
  80. @Html.DisplayFor(x => x.StudentViewContrast.SexName)
  81. </td>
  82. </tr>
  83. <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.BirthDate ?? null), (Model.StudentViewContrast.BirthDate ?? null))">
  84. <td>
  85. @Html.LabelFor(x => x.BirthDate):
  86. </td>
  87. <td>
  88. @Html.DisplayFor(x => x.StudentViewSource.BirthDate)
  89. </td>
  90. <td>
  91. @Html.DisplayFor(x => x.StudentViewContrast.BirthDate)
  92. </td>
  93. </tr>
  94. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.NationName, Model.StudentViewContrast.NationName)">
  95. <td>
  96. @Html.LabelFor(x => x.NationName):
  97. </td>
  98. <td>
  99. @Html.DisplayFor(x => x.StudentViewSource.NationName)
  100. </td>
  101. <td>
  102. @Html.DisplayFor(x => x.StudentViewContrast.NationName)
  103. </td>
  104. </tr>
  105. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.PoliticsName, Model.StudentViewContrast.PoliticsName)">
  106. <td>
  107. @Html.LabelFor(x => x.PoliticsName):
  108. </td>
  109. <td>
  110. @Html.DisplayFor(x => x.StudentViewSource.PoliticsName)
  111. </td>
  112. <td>
  113. @Html.DisplayFor(x => x.StudentViewContrast.PoliticsName)
  114. </td>
  115. </tr>
  116. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentTypeName, Model.StudentViewContrast.StudentTypeName)">
  117. <td>
  118. @Html.LabelFor(x => x.StudentTypeName):
  119. </td>
  120. <td>
  121. @Html.DisplayFor(x => x.StudentViewSource.StudentTypeName)
  122. </td>
  123. <td>
  124. @Html.DisplayFor(x => x.StudentViewContrast.StudentTypeName)
  125. </td>
  126. </tr>
  127. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CertificatesTypeName, Model.StudentViewContrast.CertificatesTypeName)">
  128. <td>
  129. @Html.LabelFor(x => x.CertificatesTypeName):
  130. </td>
  131. <td>
  132. @Html.DisplayFor(x => x.StudentViewSource.CertificatesTypeName)
  133. </td>
  134. <td>
  135. @Html.DisplayFor(x => x.StudentViewContrast.CertificatesTypeName)
  136. </td>
  137. </tr>
  138. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IDNumber, Model.StudentViewContrast.IDNumber)">
  139. <td>
  140. @Html.LabelFor(x => x.IDNumber):
  141. </td>
  142. <td>
  143. @Html.DisplayFor(x => x.StudentViewSource.IDNumber)
  144. </td>
  145. <td>
  146. @Html.DisplayFor(x => x.StudentViewContrast.IDNumber)
  147. </td>
  148. </tr>
  149. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.InSchoolStatusName, Model.StudentViewContrast.InSchoolStatusName)">
  150. <td>
  151. @Html.LabelFor(x => x.InSchoolStatusName):
  152. </td>
  153. <td>
  154. @Html.DisplayFor(x => x.StudentViewSource.InSchoolStatusName)
  155. </td>
  156. <td>
  157. @Html.DisplayFor(x => x.StudentViewContrast.InSchoolStatusName)
  158. </td>
  159. </tr>
  160. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StudentStatusName, Model.StudentViewContrast.StudentStatusName)">
  161. <td>
  162. @Html.LabelFor(x => x.StudentStatusName):
  163. </td>
  164. <td>
  165. @Html.DisplayFor(x => x.StudentViewSource.StudentStatusName)
  166. </td>
  167. <td>
  168. @Html.DisplayFor(x => x.StudentViewContrast.StudentStatusName)
  169. </td>
  170. </tr>
  171. <tr>
  172. <td colspan="3" style="padding:1px;height:10px;">
  173. <div id="specialtyExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  174. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  175. onclick="swapSpecialty();">
  176. </div>
  177. <div style="float: left;height: 10px; cursor: pointer; color: red; font-size: 12px;" onclick="swapSpecialty();">
  178. 专业班级信息
  179. </div>
  180. </td>
  181. </tr>
  182. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.GradeName, Model.StudentViewContrast.GradeName)">
  183. <td>
  184. @Html.LabelFor(x => x.GradeName):
  185. </td>
  186. <td>
  187. @Html.DisplayFor(x => x.StudentViewSource.GradeName)
  188. </td>
  189. <td>
  190. @Html.DisplayFor(x => x.StudentViewContrast.GradeName)
  191. </td>
  192. </tr>
  193. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.StandardName, Model.StudentViewContrast.StandardName)">
  194. <td>
  195. @Html.LabelFor(x => x.StandardName):
  196. </td>
  197. <td>
  198. @Html.DisplayFor(x => x.StudentViewSource.StandardName)
  199. </td>
  200. <td>
  201. @Html.DisplayFor(x => x.StudentViewContrast.StandardName)
  202. </td>
  203. </tr>
  204. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.EducationName, Model.StudentViewContrast.EducationName)">
  205. <td>
  206. @Html.LabelFor(x => x.EducationName):
  207. </td>
  208. <td>
  209. @Html.DisplayFor(x => x.StudentViewSource.EducationName)
  210. </td>
  211. <td>
  212. @Html.DisplayFor(x => x.StudentViewContrast.EducationName)
  213. </td>
  214. </tr>
  215. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.LearningformName, Model.StudentViewContrast.LearningformName)">
  216. <td>
  217. @Html.LabelFor(x => x.LearningformName):
  218. </td>
  219. <td>
  220. @Html.DisplayFor(x => x.StudentViewSource.LearningformName)
  221. </td>
  222. <td>
  223. @Html.DisplayFor(x => x.StudentViewContrast.LearningformName)
  224. </td>
  225. </tr>
  226. <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.LearnSystem ?? null), (Model.StudentViewContrast.LearnSystem ?? null))">
  227. <td>
  228. @Html.LabelFor(x => x.LearnSystem):
  229. </td>
  230. <td>
  231. @Html.DisplayFor(x => x.StudentViewSource.LearnSystem)
  232. </td>
  233. <td>
  234. @Html.DisplayFor(x => x.StudentViewContrast.LearnSystem)
  235. </td>
  236. </tr>
  237. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CollegeName, Model.StudentViewContrast.CollegeName)">
  238. <td>
  239. @Html.LabelFor(x => x.CollegeName):
  240. </td>
  241. <td>
  242. @Html.DisplayFor(x => x.StudentViewSource.CollegeName)
  243. </td>
  244. <td>
  245. @Html.DisplayFor(x => x.StudentViewContrast.CollegeName)
  246. </td>
  247. </tr>
  248. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ClassmajorName, Model.StudentViewContrast.ClassmajorName)">
  249. <td>
  250. @Html.LabelFor(x => x.ClassmajorName):
  251. </td>
  252. <td>
  253. @Html.DisplayFor(x => x.StudentViewSource.ClassmajorName)
  254. </td>
  255. <td>
  256. @Html.DisplayFor(x => x.StudentViewContrast.ClassmajorName)
  257. </td>
  258. </tr>
  259. <tr>
  260. <td colspan="3" style="padding:1px;height:10px;">
  261. <div id="profileExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  262. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  263. onclick="swapProfile();">
  264. </div>
  265. <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapProfile();">
  266. 学生扩展信息
  267. </div>
  268. </td>
  269. </tr>
  270. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.UsedName, Model.StudentViewContrast.UsedName)">
  271. <td>
  272. @Html.LabelFor(x => x.UsedName):
  273. </td>
  274. <td>
  275. @Html.DisplayFor(x => x.StudentViewSource.UsedName)
  276. </td>
  277. <td>
  278. @Html.DisplayFor(x => x.StudentViewContrast.UsedName)
  279. </td>
  280. </tr>
  281. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.DirectorName, Model.StudentViewContrast.DirectorName)">
  282. <td>
  283. @Html.LabelFor(x => x.DirectorName):
  284. </td>
  285. <td>
  286. @Html.DisplayFor(x => x.StudentViewSource.DirectorName)
  287. </td>
  288. <td>
  289. @Html.DisplayFor(x => x.StudentViewContrast.DirectorName)
  290. </td>
  291. </tr>
  292. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.LiteracyLevelName, Model.StudentViewContrast.LiteracyLevelName)">
  293. <td>
  294. @Html.LabelFor(x => x.LiteracyLevelName):
  295. </td>
  296. <td>
  297. @Html.DisplayFor(x => x.StudentViewSource.LiteracyLevelName)
  298. </td>
  299. <td>
  300. @Html.DisplayFor(x => x.StudentViewContrast.LiteracyLevelName)
  301. </td>
  302. </tr>
  303. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CultureModelName, Model.StudentViewContrast.CultureModelName)">
  304. <td>
  305. @Html.LabelFor(x => x.CultureModelName):
  306. </td>
  307. <td>
  308. @Html.DisplayFor(x => x.StudentViewSource.CultureModelName)
  309. </td>
  310. <td>
  311. @Html.DisplayFor(x => x.StudentViewContrast.CultureModelName)
  312. </td>
  313. </tr>
  314. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Country, Model.StudentViewContrast.Country)">
  315. <td>
  316. @Html.LabelFor(x => x.Country):
  317. </td>
  318. <td>
  319. @Html.DisplayFor(x => x.StudentViewSource.Country)
  320. </td>
  321. <td>
  322. @Html.DisplayFor(x => x.StudentViewContrast.Country)
  323. </td>
  324. </tr>
  325. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Place, Model.StudentViewContrast.Place)">
  326. <td>
  327. @Html.LabelFor(x => x.Place):
  328. </td>
  329. <td>
  330. @Html.DisplayFor(x => x.StudentViewSource.Place)
  331. </td>
  332. <td>
  333. @Html.DisplayFor(x => x.StudentViewContrast.Place)
  334. </td>
  335. </tr>
  336. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BornPlace, Model.StudentViewContrast.BornPlace)">
  337. <td>
  338. @Html.LabelFor(x => x.BornPlace):
  339. </td>
  340. <td>
  341. @Html.DisplayFor(x => x.StudentViewSource.BornPlace)
  342. </td>
  343. <td>
  344. @Html.DisplayFor(x => x.StudentViewContrast.BornPlace)
  345. </td>
  346. </tr>
  347. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.HealthStateName, Model.StudentViewContrast.HealthStateName)">
  348. <td>
  349. @Html.LabelFor(x => x.HealthStateName):
  350. </td>
  351. <td>
  352. @Html.DisplayFor(x => x.StudentViewSource.HealthStateName)
  353. </td>
  354. <td>
  355. @Html.DisplayFor(x => x.StudentViewContrast.HealthStateName)
  356. </td>
  357. </tr>
  358. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BloodGroupName, Model.StudentViewContrast.BloodGroupName)">
  359. <td>
  360. @Html.LabelFor(x => x.BloodGroupName):
  361. </td>
  362. <td>
  363. @Html.DisplayFor(x => x.StudentViewSource.BloodGroupName)
  364. </td>
  365. <td>
  366. @Html.DisplayFor(x => x.StudentViewContrast.BloodGroupName)
  367. </td>
  368. </tr>
  369. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Specialty, Model.StudentViewContrast.Specialty)">
  370. <td>
  371. @Html.LabelFor(x => x.Specialty):
  372. </td>
  373. <td>
  374. @Html.DisplayFor(x => x.StudentViewSource.Specialty)
  375. </td>
  376. <td>
  377. @Html.DisplayFor(x => x.StudentViewContrast.Specialty)
  378. </td>
  379. </tr>
  380. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Height, Model.StudentViewContrast.Height)">
  381. <td>
  382. @Html.LabelFor(x => x.Height):
  383. </td>
  384. <td>
  385. @Html.DisplayFor(x => x.StudentViewSource.Height)
  386. </td>
  387. <td>
  388. @Html.DisplayFor(x => x.StudentViewContrast.Height)
  389. </td>
  390. </tr>
  391. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Weight, Model.StudentViewContrast.Weight)">
  392. <td>
  393. @Html.LabelFor(x => x.Weight):
  394. </td>
  395. <td>
  396. @Html.DisplayFor(x => x.StudentViewSource.Weight)
  397. </td>
  398. <td>
  399. @Html.DisplayFor(x => x.StudentViewContrast.Weight)
  400. </td>
  401. </tr>
  402. <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.PlanningGraduateDate ?? null), (Model.StudentViewContrast.PlanningGraduateDate ?? null))">
  403. <td>
  404. @Html.LabelFor(x => x.PlanningGraduateDate):
  405. </td>
  406. <td>
  407. @Html.DisplayFor(x => x.StudentViewSource.PlanningGraduateDate)
  408. </td>
  409. <td>
  410. @Html.DisplayFor(x => x.StudentViewContrast.PlanningGraduateDate)
  411. </td>
  412. </tr>
  413. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IsDreamProjectName, Model.StudentViewContrast.IsDreamProjectName)">
  414. <td>
  415. @Html.LabelFor(x => x.IsDreamProjectName):
  416. </td>
  417. <td>
  418. @Html.CheckBoxFor(x => x.StudentViewSource.IsDreamProject, new Dictionary<string, object>() { { "disabled", "true" } })
  419. </td>
  420. <td>
  421. @Html.CheckBoxFor(x => x.StudentViewContrast.IsDreamProject, new Dictionary<string, object>() { { "disabled", "true" } })
  422. </td>
  423. </tr>
  424. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.IsProofreadName, Model.StudentViewContrast.IsProofreadName)">
  425. <td>
  426. @Html.LabelFor(x => x.IsProofreadName):
  427. </td>
  428. <td>
  429. @Html.CheckBoxFor(x => x.StudentViewSource.IsProofread, new Dictionary<string, object>() { { "disabled", "true" } })
  430. </td>
  431. <td>
  432. @Html.CheckBoxFor(x => x.StudentViewContrast.IsProofread, new Dictionary<string, object>() { { "disabled", "true" } })
  433. </td>
  434. </tr>
  435. <tr>
  436. <td colspan="3" style="padding:1px;height:10px;">
  437. <div id="contactExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  438. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  439. onclick="swapContact();">
  440. </div>
  441. <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapContact();">
  442. 学生联系信息
  443. </div>
  444. </td>
  445. </tr>
  446. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Email, Model.StudentViewContrast.Email)">
  447. <td>
  448. @Html.LabelFor(x => x.Email):
  449. </td>
  450. <td>
  451. @Html.DisplayFor(x => x.StudentViewSource.Email)
  452. </td>
  453. <td>
  454. @Html.DisplayFor(x => x.StudentViewContrast.Email)
  455. </td>
  456. </tr>
  457. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Mobile, Model.StudentViewContrast.Mobile)">
  458. <td>
  459. @Html.LabelFor(x => x.Mobile):
  460. </td>
  461. <td>
  462. @Html.DisplayFor(x => x.StudentViewSource.Mobile)
  463. </td>
  464. <td>
  465. @Html.DisplayFor(x => x.StudentViewContrast.Mobile)
  466. </td>
  467. </tr>
  468. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Telephone, Model.StudentViewContrast.Telephone)">
  469. <td>
  470. @Html.LabelFor(x => x.Telephone):
  471. </td>
  472. <td>
  473. @Html.DisplayFor(x => x.StudentViewSource.Telephone)
  474. </td>
  475. <td>
  476. @Html.DisplayFor(x => x.StudentViewContrast.Telephone)
  477. </td>
  478. </tr>
  479. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ZIPCode, Model.StudentViewContrast.ZIPCode)">
  480. <td>
  481. @Html.LabelFor(x => x.ZIPCode):
  482. </td>
  483. <td>
  484. @Html.DisplayFor(x => x.StudentViewSource.ZIPCode)
  485. </td>
  486. <td>
  487. @Html.DisplayFor(x => x.StudentViewContrast.ZIPCode)
  488. </td>
  489. </tr>
  490. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.WeChatNum, Model.StudentViewContrast.WeChatNum)">
  491. <td>
  492. @Html.LabelFor(x => x.WeChatNum):
  493. </td>
  494. <td>
  495. @Html.DisplayFor(x => x.StudentViewSource.WeChatNum)
  496. </td>
  497. <td>
  498. @Html.DisplayFor(x => x.StudentViewContrast.WeChatNum)
  499. </td>
  500. </tr>
  501. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.QQ, Model.StudentViewContrast.QQ)">
  502. <td>
  503. @Html.LabelFor(x => x.QQ):
  504. </td>
  505. <td>
  506. @Html.DisplayFor(x => x.StudentViewSource.QQ)
  507. </td>
  508. <td>
  509. @Html.DisplayFor(x => x.StudentViewContrast.QQ)
  510. </td>
  511. </tr>
  512. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.HomeAddress, Model.StudentViewContrast.HomeAddress)">
  513. <td>
  514. @Html.LabelFor(x => x.HomeAddress):
  515. </td>
  516. <td>
  517. @Html.DisplayFor(x => x.StudentViewSource.HomeAddress)
  518. </td>
  519. <td>
  520. @Html.DisplayFor(x => x.StudentViewContrast.HomeAddress)
  521. </td>
  522. </tr>
  523. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.WorkUnit, Model.StudentViewContrast.WorkUnit)">
  524. <td>
  525. @Html.LabelFor(x => x.WorkUnit):
  526. </td>
  527. <td>
  528. @Html.DisplayFor(x => x.StudentViewSource.WorkUnit)
  529. </td>
  530. <td>
  531. @Html.DisplayFor(x => x.StudentViewContrast.WorkUnit)
  532. </td>
  533. </tr>
  534. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Address, Model.StudentViewContrast.Address)">
  535. <td>
  536. @Html.LabelFor(x => x.Address):
  537. </td>
  538. <td>
  539. @Html.DisplayFor(x => x.StudentViewSource.Address)
  540. </td>
  541. <td>
  542. @Html.DisplayFor(x => x.StudentViewContrast.Address)
  543. </td>
  544. </tr>
  545. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Dormitory, Model.StudentViewContrast.Dormitory)">
  546. <td>
  547. @Html.LabelFor(x => x.Dormitory):
  548. </td>
  549. <td>
  550. @Html.DisplayFor(x => x.StudentViewSource.Dormitory)
  551. </td>
  552. <td>
  553. @Html.DisplayFor(x => x.StudentViewContrast.Dormitory)
  554. </td>
  555. </tr>
  556. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Recipient, Model.StudentViewContrast.Recipient)">
  557. <td>
  558. @Html.LabelFor(x => x.Recipient):
  559. </td>
  560. <td>
  561. @Html.DisplayFor(x => x.StudentViewSource.Recipient)
  562. </td>
  563. <td>
  564. @Html.DisplayFor(x => x.StudentViewContrast.Recipient)
  565. </td>
  566. </tr>
  567. <tr>
  568. <td colspan="3" style="padding:1px;height:10px;">
  569. <div id="accountExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  570. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  571. onclick="swapAccount();">
  572. </div>
  573. <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapAccount();">
  574. 学生缴费信息
  575. </div>
  576. </td>
  577. </tr>
  578. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.BankName, Model.StudentViewContrast.BankName)">
  579. <td>
  580. @Html.LabelFor(x => x.BankName):
  581. </td>
  582. <td>
  583. @Html.DisplayFor(x => x.StudentViewSource.BankName)
  584. </td>
  585. <td>
  586. @Html.DisplayFor(x => x.StudentViewContrast.BankName)
  587. </td>
  588. </tr>
  589. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.CardNo, Model.StudentViewContrast.CardNo)">
  590. <td>
  591. @Html.LabelFor(x => x.CardNo):
  592. </td>
  593. <td>
  594. @Html.DisplayFor(x => x.StudentViewSource.CardNo)
  595. </td>
  596. <td>
  597. @Html.DisplayFor(x => x.StudentViewContrast.CardNo)
  598. </td>
  599. </tr>
  600. <tr>
  601. <td colspan="3" style="padding:1px;height:10px;">
  602. <div id="recruitExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  603. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  604. onclick="swapRecruit();">
  605. </div>
  606. <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapRecruit();">
  607. 高考招生信息
  608. </div>
  609. </td>
  610. </tr>
  611. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ExamineeNum, Model.StudentViewContrast.ExamineeNum)">
  612. <td>
  613. @Html.LabelFor(x => x.ExamineeNum):
  614. </td>
  615. <td>
  616. @Html.DisplayFor(x => x.StudentViewSource.ExamineeNum)
  617. </td>
  618. <td>
  619. @Html.DisplayFor(x => x.StudentViewContrast.ExamineeNum)
  620. </td>
  621. </tr>
  622. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.AdmissionTicketNo, Model.StudentViewContrast.AdmissionTicketNo)">
  623. <td>
  624. @Html.LabelFor(x => x.AdmissionTicketNo):
  625. </td>
  626. <td>
  627. @Html.DisplayFor(x => x.StudentViewSource.AdmissionTicketNo)
  628. </td>
  629. <td>
  630. @Html.DisplayFor(x => x.StudentViewContrast.AdmissionTicketNo)
  631. </td>
  632. </tr>
  633. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.ExamineeTypeName, Model.StudentViewContrast.ExamineeTypeName)">
  634. <td>
  635. @Html.LabelFor(x => x.ExamineeTypeName):
  636. </td>
  637. <td>
  638. @Html.DisplayFor(x => x.StudentViewSource.ExamineeTypeName)
  639. </td>
  640. <td>
  641. @Html.DisplayFor(x => x.StudentViewContrast.ExamineeTypeName)
  642. </td>
  643. </tr>
  644. <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.EntranceDate ?? null), (Model.StudentViewContrast.EntranceDate ?? null))">
  645. <td>
  646. @Html.LabelFor(x => x.EntranceDate):
  647. </td>
  648. <td>
  649. @Html.DisplayFor(x => x.StudentViewSource.EntranceDate)
  650. </td>
  651. <td>
  652. @Html.DisplayFor(x => x.StudentViewContrast.EntranceDate)
  653. </td>
  654. </tr>
  655. <tr class="@CheckingApproveController.GetCheckingStyle((Model.StudentViewSource.Score ?? null), (Model.StudentViewContrast.Score ?? null))">
  656. <td>
  657. @Html.LabelFor(x => x.Score):
  658. </td>
  659. <td>
  660. @Html.DisplayFor(x => x.StudentViewSource.Score)
  661. </td>
  662. <td>
  663. @Html.DisplayFor(x => x.StudentViewContrast.Score)
  664. </td>
  665. </tr>
  666. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.EntranceWayName, Model.StudentViewContrast.EntranceWayName)">
  667. <td>
  668. @Html.LabelFor(x => x.EntranceWayName):
  669. </td>
  670. <td>
  671. @Html.DisplayFor(x => x.StudentViewSource.EntranceWayName)
  672. </td>
  673. <td>
  674. @Html.DisplayFor(x => x.StudentViewContrast.EntranceWayName)
  675. </td>
  676. </tr>
  677. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.FeaturesName, Model.StudentViewContrast.FeaturesName)">
  678. <td>
  679. @Html.LabelFor(x => x.FeaturesName):
  680. </td>
  681. <td>
  682. @Html.DisplayFor(x => x.StudentViewSource.FeaturesName)
  683. </td>
  684. <td>
  685. @Html.DisplayFor(x => x.StudentViewContrast.FeaturesName)
  686. </td>
  687. </tr>
  688. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.TerritorialName, Model.StudentViewContrast.TerritorialName)">
  689. <td>
  690. @Html.LabelFor(x => x.TerritorialName):
  691. </td>
  692. <td>
  693. @Html.DisplayFor(x => x.StudentViewSource.TerritorialName)
  694. </td>
  695. <td>
  696. @Html.DisplayFor(x => x.StudentViewContrast.TerritorialName)
  697. </td>
  698. </tr>
  699. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Area, Model.StudentViewContrast.Area)">
  700. <td>
  701. @Html.LabelFor(x => x.Area):
  702. </td>
  703. <td>
  704. @Html.DisplayFor(x => x.StudentViewSource.Area)
  705. </td>
  706. <td>
  707. @Html.DisplayFor(x => x.StudentViewContrast.Area)
  708. </td>
  709. </tr>
  710. <tr>
  711. <td colspan="3" style="padding:1px;height:10px;">
  712. <div id="otherExpander" style="width: 16px; float: left; height: 16px; cursor: pointer;
  713. background: url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0;"
  714. onclick="swapOther();">
  715. </div>
  716. <div style="float: left;height: 10px; cursor: pointer; color: red;" onclick="swapOther();">
  717. 其它信息
  718. </div>
  719. </td>
  720. </tr>
  721. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Career, Model.StudentViewContrast.Career)">
  722. <td>
  723. @Html.LabelFor(x => x.Career):
  724. </td>
  725. <td>
  726. @Html.DisplayTextFor(x => x.StudentViewSource.CardNo)
  727. </td>
  728. <td>
  729. @Html.DisplayTextFor(x => x.StudentViewContrast.CardNo)
  730. </td>
  731. </tr>
  732. <tr class="@CheckingApproveController.GetCheckingStyle(Model.StudentViewSource.Remark, Model.StudentViewContrast.Remark)">
  733. <td>
  734. @Html.LabelFor(x => x.Remark):
  735. </td>
  736. <td>
  737. @Html.DisplayTextFor(x => x.StudentViewSource.Remark)
  738. </td>
  739. <td>
  740. @Html.DisplayTextFor(x => x.StudentViewContrast.Remark)
  741. </td>
  742. </tr>
  743. <tr>
  744. <td style="color: red;">
  745. @Html.LabelFor(x => x.Action):
  746. </td>
  747. <td colspan="2">
  748. @Html.DropdownList(new DropdownListOptions
  749. {
  750. BindType = DropdownListBindType.None,
  751. ID = "ddlAction",
  752. Name = "ddlAction",
  753. ItemList = listAction,
  754. SelectedValue = defaultActionValue
  755. })
  756. </td>
  757. </tr>
  758. <tr>
  759. <td style="color: red;">
  760. @Html.LabelFor(x => x.Comment):
  761. </td>
  762. <td colspan="2">
  763. @Html.TextAreaFor(x => x.Comment, new Dictionary<string, object>
  764. {
  765. { "style", "width: 98%;min-height: 50px" }
  766. })
  767. </td>
  768. </tr>
  769. </table>
  770. </div>
  771. }
  772. </div>