12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "GraduateNoImport";
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Html.BeginForm("GraduateNoImport", "Student", 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("GNImport")</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 style="color: Red">模板:
- <a id="importExcel" style="color: Red;" href="~/Content/TemplateFile/批量导入毕业证书编号(身份证号)模板.xls" target="_blank">
- 点击下载...
- </a>
- </span>
- <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>
- //保存数据
- function Student_GraduateNoImportSave() {
- var filepath = $("input[name='file']").val();
- if (filepath == "") {
- $.messager.alert("系统提示", "请选择你要导入的Excel文件");
- return;
- }
- //加载中。。。
- $(document.forms[0]).submitWithLoading();
- }
- $(function () {
- var errorFile = '@ViewBag.ErrorFile';
- if (errorFile != '') {
- $('#error').show();
- }
- //批量导入毕业证书编号(身份证号)模板配置(StudentGraduateNoImport),Excel表列名相同无需在Site.xml文件中配置
- var customerUrl = $(CMS_SystemConfig.GetConfig()).find("configuration>customUrls>add[key='StudentGraduateNoImport']");
- if (customerUrl.attr("value")) {
- $("#importExcel").attr("href", customerUrl.attr("value"))
- }
- });
- </script>
|