uploadAnnex.html
5.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head th:include="include :: header"></head>
<div th:replace ="include:: bootstrap-fileinput-css"></div>
<body>
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-config-add" name="form-config-add">
<input name="annex" type="hidden" id="annex">
<input name="id" type="hidden" id="id" th:value="${id}">
<div class="form-group">
<div class="file-loading">
<input id="fileinput-demo-1" type="file" multiple>
</div>
</div>
<div class="form-group">
<div class="form-control-static col-sm-offset-9">
<button type="button" class="btn btn-primary" onclick="submitHandler()">提交</button>
<button onclick="$.modal.close()" class="btn btn-danger" type="button">关闭</button>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: bootstrap-fileinput-js" />
<script type="text/javascript">
$(document).ready(function () {
$("#fileinput-demo-1").fileinput({
language: 'zh', //设置语言
dropZoneTitle: '可以将文件拖放到这里',
uploadUrl: ctx + "common/uploadFileData", //上传的地址
uploadExtraData: function(previewId, index) { //该插件可以向您的服务器方法发送附加数据。这可以通过uploadExtraData在键值对中设置为关联数组对象来完成。所以如果你有设置uploadExtraData={id:'kv-1'},在PHP中你可以读取这些数据$_POST['id']
var id = $('#id').val();
return {seriesId: id};
},
uploadAsync: true, //默认异步上传
showUpload: true, //是否显示上传按钮
showRemove: true, //显示移除按钮
showPreview: true, //是否显示预览
showCancel:true, //是否显示文件上传取消按钮。默认为true。只有在AJAX上传过程中,才会启用和显示
showCaption: true,//是否显示文件标题,默认为true
browseClass: "btn btn-primary", //文件选择器/浏览按钮的CSS类。默认为btn btn-primary
dropZoneEnabled: true,//是否显示拖拽区域
minImageWidth: 50, //图片的最小宽度
minImageHeight: 50,//图片的最小高度
maxImageWidth: 1000,//图片的最大宽度
maxImageHeight: 1000,//图片的最大高度
maxFileSize: 1024,//单位为kb,如果为0表示不限制文件大小
minFileCount: 1, //每次上传允许的最少文件数。如果设置为0,则表示文件数是可选的。默认为0
maxFileCount: 0, //每次上传允许的最大文件数。如果设置为0,则表示允许的文件数是无限制的。默认为0
previewFileIcon: "<i class='glyphicon glyphicon-king'></i>",//当检测到用于预览的不可读文件类型时,将在每个预览文件缩略图中显示的图标。默认为<i class="glyphicon glyphicon-file"></i>
layoutTemplates:{
actionUpload:'', //去除上传预览缩略图中的上传图片
actionZoom:'', //去除上传预览缩略图中的查看详情预览的缩略图标
actionDownload:'', //去除上传预览缩略图中的下载图标
actionDelete:'', //去除上传预览的缩略图中的删除图标
},//对象用于渲染布局的每个部分的模板配置。您可以设置以下模板来控制窗口小部件布局.eg:去除上传图标
msgFilesTooMany: "选择上传的文件数量({n}) 超过允许的最大数值{m}!",//字符串,当文件数超过设置的最大计数时显示的消息 maxFileCount。默认为:选择上传的文件数({n})超出了允许的最大限制{m}。请重试您的上传!
}).on('filebatchpreupload', function(event, data) { //该方法将在上传之前触发
var id = $('#id option:selected').val();
if(id == 0){
return {
message: "请选择", // 验证错误信息在上传前要显示。如果设置了这个设置,插件会在调用时自动中止上传,并将其显示为错误消息。您可以使用此属性来读取文件并执行自己的自定义验证
data:{} // any other data to send that can be referred in `filecustomerror`
};
}
});
$('#fileinput-demo-1').on('fileuploaded',function (event, data, previewId, index) {
if (data.response.code == 200) {
let annex = $("#annex").val();
if (annex == null || annex == '') {
$("#annex").val(data.response.data.fileName)
} else {
$("#annex").val(annex + ";"+data.response.data.fileName)
}
console.log($("#annex").val());
} else {
$.modal.alertError("上传失败");
}
});
});
function submitHandler() {
let config = {
url: ctx+"/srm/srmDetailCheck/uploadAnnex",
type: "post",
data: $("#form-config-add").serializeArray(),
beforeSend: function () {
$.modal.loading("正在处理中,请稍后...");
},
success: function(result) {
$.operate.ajaxSuccess(result);
$.modal.close();
$.table.refresh();
}
};
$.ajax(config)
}
</script>
</body>
</html>