[更新]修复文件上传引擎选用问题

This commit is contained in:
邹景立 2017-04-17 18:47:56 +08:00
parent 6e2c976bb7
commit 52ce17a0b7
2 changed files with 6 additions and 2 deletions

View File

@ -47,7 +47,11 @@ class Plugs extends BasicAdmin {
$types = $this->request->get('type', 'jpg,png');
$this->assign('mode', $mode);
$this->assign('types', $types);
$this->assign('uptype', $this->request->get('uptype', sysconf('storage_type')));
$uptype = $this->request->get('uptype');
if (!in_array($uptype, ['local', 'qiniu'])) {
$uptype = sysconf('storage_type');
}
$this->assign('uptype', $uptype);
$this->assign('mimes', FileService::getFileMine($types));
$this->assign('field', $this->request->get('field', 'file'));
return view();

View File

@ -101,7 +101,7 @@ define(['jquery', 'admin.plugs'], function () {
var field = $(this).attr('data-field') || 'file';
var method = $(this).attr('data-file') === 'one' ? 'one' : 'mtl';
var title = $(this).attr('data-title') || '文件上传';
var uptype = $(this).attr('data-uptype') || 'local';
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;
$.form.iframe(url, title || '文件管理');
});