12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @model EMIS.ViewModel.StudentManage.StudentProfile.StudentView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "PictureExport";
- }
- @section scripts{
- <script src="~/Scripts/Business/StudentManage/StudentProfile/StudentPictureExport.js" type="text/javascript"></script>
- <script type="text/javascript">
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <form id="formQuery" method="post" action="@Url.Content("~/Student/PictureExport")">
- <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("PicExport")</div>
- </div>
- <div class="search_list">
- @Html.Hidden("queryParamsDatas")
- @Html.Hidden("userIDs")
- @Html.Hidden("exportPicType")
- <table cellpadding="0" cellspacing="0" class="pictureExport">
- <tr style="height:45px;">
- <td style="padding-left:10px;">
- @Html.RadioButton("PictureType", "StudentNoToPic", true)
- </td>
- <td style="font-size:15px;width:250px;">
- 学号
- </td>
- <td style="padding-left:10px;">
- @Html.RadioButton("PictureType", "ExamineeNumToPic")
- </td>
- <td style="font-size:15px;width:250px;">
- 考生号
- </td>
- </tr>
- <tr style="height:45px;">
- <td style="padding-left:10px;">
- @Html.RadioButton("PictureType", "IDNumberToPic")
- </td>
- <td style="font-size:15px;width:250px;">
- 证件号码
- </td>
- <td style="padding-left:10px;">
- @Html.RadioButton("PictureType", "StudentNoAndNameToPic")
- </td>
- <td style="font-size:15px;width:250px;">
- 学号+姓名
- </td>
- </tr>
- </table>
- </div>
- </form>
- </div>
|