Update upload.js

修复拖拽上传时index为0的bug
This commit is contained in:
juneszh
2021-05-26 17:13:20 +08:00
committed by GitHub
parent b5f6f89cfe
commit 7ddc0a39d6

View File

@@ -502,12 +502,7 @@ layui.define('layer' , function(exports){
othis.removeAttr('lay-over');
setChooseFile(files);
if(options.auto){
that.upload(files);
} else {
setChooseText(files);
}
options.auto ? that.upload() : setChooseText(files); //是否自动触发上传
});
}