[更新]多文件上传问题修复

This commit is contained in:
Anyon 2017-07-03 16:38:01 +08:00
parent 696493a0f9
commit f7eb227442

View File

@ -99,7 +99,7 @@ define(['jquery', 'admin.plugs'], function () {
var method = $(this).attr('data-file') === 'one' ? 'one' : 'mtl';
var title = $(this).attr('data-title') || '文件上传';
var uptype = $(this).attr('data-uptype') || '';
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile/mode/' + method + '.html?uptype=' + uptype + '&type=' + type + '&field=' + field;
var url = window.ROOT_URL + '/index.php/admin/plugs/upfile/mode/' + method + '.html?mode=' + method + '&uptype=' + uptype + '&type=' + type + '&field=' + field;
$.form.iframe(url, title || '文件管理');
});