1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @model EMIS.ViewModel.Students.StudentsView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- <style type="text/css">
- .universitytable
- {
- width: 100%;
- border: 0px none;
- }
-
- .universitytable tr
- {
- min-height: 30px;
- }
-
- .a4
- {
- width: 600px;
- color: Red;
- }
- </style>
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <form id="formQuery" method="post" action="@Url.Content("~/Students/ExportPictures")">
- <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("Export")
- </div>
- </div>
- <div class="search_list">
- @Html.Hidden("QueryParamsDatas")
- @Html.Hidden("selectedIDs")
- @Html.Hidden("ExportPictureType")
- <table cellpadding="0" cellspacing="0" class="universitytable">
- <tr>
- <td>@Html.RadioButton("type", "IDNumberToPicture")
- </td >
- <td >
- 证件号
- </td>
- @*<td>@Html.RadioButton("type", "IDNumberToPicture")
- </td >
- <td >
- 证件号
- </td>*@
-
- </tr>
- @*<tr>
- <td >@Html.RadioButton("type", "ExamineeNumToPicture")
- </td>
- <td >
- 考生号
- </td>
- <td>@Html.RadioButton("type", "LoginIDandUserNameToPicture")
- </td>
- <td>
- 学号+姓名
- </td>
- </tr>*@
- </table>
- </div>
- </form>
- </div>
- @section scripts{
- <script src="~/Scripts/Business/Studentfile/StudentExportPictures.js" type="text/javascript"></script>
- }
|