123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- @model EMIS.ViewModel.ExaminationApply.StudentListView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Import";
- }
- @section scripts{
- <script src="~/Scripts/Business/ScoreManage/ExaminationScoreImport.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("Import", "ExaminationScore", new{ MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
- {
-
- <div class="p_title">
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Import")</div>
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="1">
- <tr>
- <td>
- <label>学年学期:</label>
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"),
- ID = "ddlSchoolyear",
- Name = "ddlSchoolyear",
- OnSelect = "schoolyearChange",
- SelectedValue = BaseExtensions.GetCurrentSchoolYearID(),
- OnLoadSuccess = "schoolyearChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgStudentList" } })
- </td>
- <td>
- <label>考试批次:</label>
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationBatch",
- Name = "ddlExaminationBatch",
- OnSelect = "examinationBatchChange",
- OnLoadSuccess = "examinationBatchChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgStudentList" } })
- </td>
- </tr>
- <tr>
- <td>
- <label>考试类型:</label>
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationType",
- Name = "ddlExaminationType",
- OnSelect = "examinationTypeChange",
- OnLoadSuccess = "examinationTypeChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgStudentList" } })
- </td>
- <td>
- <label>项目名称:</label>
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationProject",
- Name = "ddlExaminationProject",
- //OnSelect = "reload",
- },
- new Dictionary<string, string> { { "data-condition", "dgStudentList" } })
- </td>
- </tr>
- <tr>
- <td>
- <label>
- 文件:
- </label>
- </td>
- <td colspan="3">
- <input type="file" name="file" accept="*.xls" value="" />
- </td>
- </tr>
- <tr>
- <td colspan="4" style="text-align: center;">
- <span id="error" style="display: none; color:red">
-
- <a style="color: Red;" href="@ViewBag.ErrorFile" target="_blank">
- @ViewBag.operationTips
- </a>
- </span>
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|