mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改文件大小限制
This commit is contained in:
parent
85b8c55b0a
commit
21b9e107c5
@ -72,11 +72,12 @@ define(['md5', 'notify'], function (SparkMD5, Notify, allowMime) {
|
||||
var that = this.init();
|
||||
layui.each(files, function (index, file) {
|
||||
that.count.total++, file.index = index, that.files[index] = file;
|
||||
if (that.option.size && file.size > that.option.size) {
|
||||
that.event('upload.error', {file: file}, file, '大小超限');
|
||||
} else if (!that.option.hide) {
|
||||
if (!that.option.hide && !file.notify) {
|
||||
file.notify = new NotifyExtend(file);
|
||||
}
|
||||
if (that.option.size && file.size > that.option.size) {
|
||||
that.event('upload.error', {file: file}, file, '大小超出限制');
|
||||
}
|
||||
}), layui.each(files, function (index, file) {
|
||||
// 禁传异常状态文件
|
||||
if (typeof file.xstate === 'number' && file.xstate === -1) return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user