You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
5.0 KiB

3 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
3 years ago
<title>文档上传</title>
3 years ago
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../lib/layui/css/layui.css" rel="stylesheet">
3 years ago
<script src="../lib/layui/layui.js"></script>
3 years ago
</head>
<body>
<div class="layui-upload">
<button type="button" class="layui-btn layui-btn-normal" id="testList">选择多文件</button>
<div class="layui-upload-list" style="max-width: 1000px;">
<table class="layui-table">
<colgroup>
<col>
<col width="150">
<col width="260">
<col width="150">
</colgroup>
<thead>
<tr>
<th>文件名</th>
<th>大小</th>
<th>上传进度</th>
<th>操作</th>
</tr>
</thead>
<tbody id="demoList"></tbody>
</table>
</div>
<button type="button" class="layui-btn" id="testListAction">开始上传</button>
</div>
3 years ago
3 years ago
<script>
3 years ago
layui.use(['upload', 'element', 'layer', 'form', 'table', 'laydate', 'util'], function () {
3 years ago
var $ = layui.jquery
, upload = layui.upload
3 years ago
, table = layui.table
, util = layui.util
, laydate = layui.laydate
3 years ago
, element = layui.element
3 years ago
, form = layui.form
3 years ago
, layer = layui.layer;
//演示多文件列表
var uploadListIns = upload.render({
elem: '#testList'
, elemList: $('#demoList') //列表元素对象
, url: 'https://httpbin.org/post' //此处用的是第三方的 http 请求演示,实际使用时改成您自己的上传接口即可。
, accept: 'file'
3 years ago
, acceptMime: "application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document"
, exts: 'docx|doc' //只允许上传word文件
3 years ago
, multiple: true
3 years ago
, number: 10
3 years ago
, auto: false
, bindAction: '#testListAction'
, choose: function (obj) {
3 years ago
let that = this;
let files = this.files = obj.pushFile(); //将每次选择的文件追加到文件队列
3 years ago
//读取本地文件
obj.preview(function (index, file, result) {
3 years ago
let tr = $(['<tr id="upload-' + index + '">'
3 years ago
, '<td>' + file.name + '</td>'
, '<td>' + (file.size / 1024).toFixed(1) + 'kb</td>'
, '<td><div class="layui-progress" lay-filter="progress-demo-' + index + '"><div class="layui-progress-bar" lay-percent=""></div></div></td>'
, '<td>'
, '<button class="layui-btn layui-btn-xs demo-reload layui-hide">重传</button>'
, '<button class="layui-btn layui-btn-xs layui-btn-danger demo-delete">删除</button>'
, '</td>'
, '</tr>'].join(''));
//单个重传
tr.find('.demo-reload').on('click', function () {
obj.upload(index, file);
});
//删除
tr.find('.demo-delete').on('click', function () {
delete files[index]; //删除对应的文件
tr.remove();
uploadListIns.config.elem.next()[0].value = ''; //清空 input file 值,以免删除后出现同名文件不可选
});
that.elemList.append(tr);
element.render('progress'); //渲染新加的进度条组件
});
}
, done: function (res, index, upload) { //成功的回调
3 years ago
let that = this;
let tr = that.elemList.find('tr#upload-' + index)
3 years ago
, tds = tr.children();
tds.eq(3).html(''); //清空操作
delete this.files[index]; //删除文件队列已经上传成功的文件
this.error(index, upload);
}
, allDone: function (obj) { //多文件上传完毕后的状态回调
console.log(obj)
}
, error: function (index, upload) { //错误回调
3 years ago
let that = this;
let tr = that.elemList.find('tr#upload-' + index)
3 years ago
, tds = tr.children();
tds.eq(3).find('.demo-reload').removeClass('layui-hide'); //显示重传
3 years ago
}, progress: function (n, elem, e, index) { //注意index 参数为 layui 2.6.6 新增
3 years ago
element.progress('progress-demo-' + index, n + '%'); //执行进度条。n 即为返回的进度百分比
}
});
});
</script>
</body>
</html>