mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改文件上传
This commit is contained in:
parent
6b7795ef9e
commit
d42f78b68b
@ -536,9 +536,8 @@ $(function () {
|
||||
/*! 全局文件上传入口 */
|
||||
$.fn.uploadFile = function (callable) {
|
||||
if (this.data('inited')) return false;
|
||||
var that = this, mode = this.data('file') || 'one';
|
||||
this.data('inited', true).data('multiple', mode !== 'one' ? 1 : 0);
|
||||
require(['upload'], function (apply) {
|
||||
var that = this, mult = 'one|btn'.indexOf(this.data('file') || 'one') < 0 ? 1 : 0;
|
||||
this.data('inited', true).data('multiple', mult), require(['upload'], function (apply) {
|
||||
apply.call(this, that, callable);
|
||||
});
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user