123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @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", "LoginIDToPicture")
- </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/ExaminationApply/ExportPictures.js"></script>
- }
|