liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<%@ tag language="java" pageEncoding="UTF-8"%>
<%@ include file="/webpage/include/taglib.jsp"%>
<%@ attribute name="url" type="java.lang.String" required="true"%>
<%-- 使用方法: 1.将本tag写在查询的form之前;2.传入controller的url --%>
<button id="btnImport" class="btn btn-white btn-sm " data-toggle="tooltip" data-placement="left" title="导入"><i class="fa fa-folder-open-o"></i> 导入</button>
<div id="importBox" class="hide">
        <form id="importForm" action="${url}" method="post" enctype="multipart/form-data"
             style="padding-left:20px;text-align:center;" onsubmit="loading('正在导入,请稍等...');"><br/>
            <input id="uploadFile" name="file" type="file" style="width:330px"/>导入文件不能超过5M,仅允许导入“xls”或“xlsx”格式文件!<br/>  
            
            
        </form>
</div>
<script type="text/javascript">
$(document).ready(function() {
    $("#btnImport").click(function(){
        top.layer.open({
            type: 1, 
            area: [500, 300],
            title:"导入数据",
            content:$("#importBox").html() ,
            btn: ['下载模板','确定', '关闭'],
                btn1: function(index, layero){
                  window.location.href='${url}/template';
              },
            btn2: function(index, layero){
                       $("#importForm").submit();
                    top.layer.close(index);
              },
             
              btn3: function(index){ 
                  top.layer.close(index);
               }
        }); 
    });
    
});
 
</script>