mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
去除其他文件选择器
Signed-off-by: Anyon <zoujingli@qq.com>
This commit is contained in:
parent
4167ea48c4
commit
e9a80653da
@ -141,60 +141,6 @@ class Upload extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 文件选择器
|
|
||||||
* @login true
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
|
||||||
*/
|
|
||||||
public function image()
|
|
||||||
{
|
|
||||||
SystemFile::mQuery()->layTable(function () {
|
|
||||||
$this->title = '文件选择器';
|
|
||||||
}, function (QueryHelper $query) {
|
|
||||||
$query->where(['status' => 2, 'issafe' => 0, 'uuid' => AdminService::getUserId()]);
|
|
||||||
$query->like('name,hash')->in('xext#type')->dateBetween('create_at')->order('id desc');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 视频选择器
|
|
||||||
* @login true
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
|
||||||
*/
|
|
||||||
public function video()
|
|
||||||
{
|
|
||||||
SystemFile::mQuery()->layTable(function () {
|
|
||||||
$this->title = '文件选择器';
|
|
||||||
}, function (QueryHelper $query) {
|
|
||||||
$query->like('name,hash')->dateBetween('create_at')->order('id desc');
|
|
||||||
$query->where(['status' => 2, 'issafe' => 0, 'uuid' => AdminService::getUserId()]);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 文档选择器
|
|
||||||
* @login true
|
|
||||||
* @return void
|
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
|
||||||
*/
|
|
||||||
public function document()
|
|
||||||
{
|
|
||||||
SystemFile::mQuery()->layTable(function () {
|
|
||||||
$this->title = '文件选择器';
|
|
||||||
}, function (QueryHelper $query) {
|
|
||||||
$query->like('name,hash')->dateBetween('create_at')->order('id desc');
|
|
||||||
$query->where(['status' => 2, 'issafe' => 0, 'uuid' => AdminService::getUserId()]);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件上传入口
|
* 文件上传入口
|
||||||
* @login true
|
* @login true
|
||||||
@ -256,6 +202,24 @@ class Upload extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件选择器
|
||||||
|
* @login true
|
||||||
|
* @return void
|
||||||
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
|
* @throws \think\db\exception\DbException
|
||||||
|
* @throws \think\db\exception\ModelNotFoundException
|
||||||
|
*/
|
||||||
|
public function image()
|
||||||
|
{
|
||||||
|
SystemFile::mQuery()->layTable(function () {
|
||||||
|
$this->title = '文件选择器';
|
||||||
|
}, function (QueryHelper $query) {
|
||||||
|
$query->where(['status' => 2, 'issafe' => 0, 'uuid' => AdminService::getUserId()]);
|
||||||
|
$query->like('name,hash')->in('xext#type')->dateBetween('create_at')->order('id desc');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取文件上传类型
|
* 获取文件上传类型
|
||||||
* @return boolean
|
* @return boolean
|
||||||
|
Loading…
x
Reference in New Issue
Block a user