unionShareOrdersMonthImport.html
1.82 KB
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
40
41
42
43
44
45
46
47
<!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>