unionShareOrdersMonthImport.html 1.82 KB
<!DOCTYPE html>
<table style="width: 500px;padding: 30px 30px 0px 30px">
    <tbody>
    <tr>
        <td style="font-size: large">上传EXCEL:</td>
        <td>
            <div id="batchImportDiv"></div>
        </td>
    </tr>
    <tr>
        <td style="font-size: large">批量导入:</td>
        <td style="font-size: large">
            1、上传文件必须是<span style="color: red">.xlsx</span>文件<br>
            2、Excel表头为:<span style="color: blue">马甲用户代码、昵称、头像、年月、预估收入、订单数</span><br>
            3、第一行为表头内容,第二行开始为正式内容<br>
            4、每个文件控制在1000行以内<br>
            5、<a id="importA">样例下载</a>
        </td>
    </tr>
    </tbody>
</table>

<script type="text/javascript">
    $(function () {
        $("#importA").attr("href", contextPath + "/common/unionShareOrdersMonth.xlsx");

        $("#batchImportDiv").fileUpload({
            text: "请选择文件",                      //按钮文字
            uploadInputName: "file",                //上传文件的控件名称
            url: contextPath + "/batch/import",     //提交到后端的url
            queryParams: {
                type: "unionShareOrdersMonthImport",
                args: "import"
            },                                      //提交到后端额外参数
            showFileName: false,				//上传成功后,是否显示文件名
            onLoadSuccess: function (fileName, data) {
                $("#userListTable").myDatagrid("reload");
                $("#batchImportDialogDiv").dialog("close");
                $.messager.show({
                    title: "提示",
                    msg: "导入成功!",
                    height: 200
                });
            }
        });
    });
</script>