123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Import";
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("Import", "Students", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" }))
- {
- <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("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">
- <span style="color: Red">注:如果使用导入功能用来更新学生信息,学生的班级不会更改,如需更改请使用异动功能!</span>
- </td>
- </tr>
- <tr>
- <td colspan="2" style="text-align: center;">
- <span style="color: Red">注:<a id="importExcel" style="color: Red;" href="~/Content/TemplateFile/批量导入学生信息模板.xls" target="_blank">模板下载</a>。</span>
- <span id="error" style="display: none;"> <a href="@ViewBag.ErrorFile" target="_blank">错误数据下载</a></span>
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
- <script>
- function Student_ImportSave() {
- var filepath = $("input[name='file']").val();
- if (filepath == "") {
- $.messager.alert("系统提示", "请选择你要上传的文件。");
- return;
- }
- $(document.forms[0]).submitWithLoading();
- }
- $(function () {
- var errorFile = '@ViewBag.ErrorFile';
- if (errorFile != '') {
- $('#error').show();
- }
- var customerUrl = $(CMS_SystemConfig.GetConfig()).find("configuration>customUrls>add[key='StudentsImport']");
- if (customerUrl.attr("value")) {
- $("#importExcel").attr("href", customerUrl.attr("value"))
- }
- });
- </script>
|