123456789101112131415161718192021222324252627282930313233343536373839 |
- @model EMIS.ViewModel.ExaminationManage.ExaminationPlanGdssView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "ClassroomGdssFalse";
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("ClassroomGdssFalse", "ExaminationPlan", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
- {
- @Html.Hidden("QueryParamsDatas")
- @Html.Hidden("selectedIDs")
- <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>
- <input type="file" name="file" accept="*.xls" value=" " />
- </td>
- </tr>
- <tr>
- <td colspan="2" 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>
- <script>
- var mnu = "";
- var windowID;
- </script>
|