mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改文件上传
This commit is contained in:
parent
e791601c00
commit
f2d0c7e7d8
@ -6,7 +6,7 @@ define(['md5'], function (SparkMD5, allowExtsMimes) {
|
||||
opt.safe = opt.element.data('safe') || '';
|
||||
opt.type = opt.element.data('type') || '';
|
||||
opt.field = opt.element.data('field') || 'file';
|
||||
opt.input = $('[name="_FIELD_"]'.replace('_FIELD_', opt.field));
|
||||
opt.input = $('[name="_field_"]'.replace('_field_', opt.field));
|
||||
opt.uptype = opt.safe ? 'local' : opt.element.attr('data-uptype') || '';
|
||||
opt.multiple = opt.element.attr('data-multiple') > 0;
|
||||
/*! 文件的选择筛选 */
|
||||
|
@ -157,8 +157,8 @@ $(function () {
|
||||
$dom.find('[data-file]:not([data-inited])').map(function (index, elem, $this, field) {
|
||||
$this = $(elem), field = $this.attr('data-field') || 'file';
|
||||
if (!$this.data('input')) $this.data('input', $('[name="' + field + '"]').get(0));
|
||||
$this.uploadFile(function (url) {
|
||||
$($this.data('input')).val(url).trigger('change');
|
||||
$this.uploadFile(function (url, file) {
|
||||
$($this.data('input')).data('file', file).val(url).trigger('change');
|
||||
});
|
||||
});
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user