ExportPictures.cshtml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @model EMIS.ViewModel.Students.StudentsView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. <style type="text/css">
  5. .universitytable
  6. {
  7. width: 100%;
  8. border: 0px none;
  9. }
  10. .universitytable tr
  11. {
  12. min-height: 30px;
  13. }
  14. .a4
  15. {
  16. width: 600px;
  17. color: Red;
  18. }
  19. </style>
  20. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  21. <form id="formQuery" method="post" action="@Url.Content("~/Students/ExportPictures")">
  22. <div class="p_title">
  23. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  24. </div>
  25. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  26. @Html.ContextMenuBar("Export")
  27. </div>
  28. </div>
  29. <div class="search_list">
  30. @Html.Hidden("QueryParamsDatas")
  31. @Html.Hidden("selectedIDs")
  32. @Html.Hidden("ExportPictureType")
  33. <table cellpadding="0" cellspacing="0" class="universitytable">
  34. <tr>
  35. <td>@Html.RadioButton("type", "IDNumberToPicture")
  36. </td >
  37. <td >
  38. 证件号
  39. </td>
  40. @*<td>@Html.RadioButton("type", "IDNumberToPicture")
  41. </td >
  42. <td >
  43. 证件号
  44. </td>*@
  45. </tr>
  46. @*<tr>
  47. <td >@Html.RadioButton("type", "ExamineeNumToPicture")
  48. </td>
  49. <td >
  50. 考生号
  51. </td>
  52. <td>@Html.RadioButton("type", "LoginIDandUserNameToPicture")
  53. </td>
  54. <td>
  55. 学号+姓名
  56. </td>
  57. </tr>*@
  58. </table>
  59. </div>
  60. </form>
  61. </div>
  62. @section scripts{
  63. <script src="~/Scripts/Business/Studentfile/StudentExportPictures.js" type="text/javascript"></script>
  64. }