From e9a80653da8aa70f9418b4affd9ddf846aeafe88 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 23 Nov 2022 14:05:18 +0000 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E5=85=B6=E4=BB=96=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E9=80=89=E6=8B=A9=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Anyon --- app/admin/controller/api/Upload.php | 72 ++++++++--------------------- 1 file changed, 18 insertions(+), 54 deletions(-) diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index 86e8d3446..38d5633a1 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -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 @@ -255,6 +201,24 @@ class Upload extends Controller $this->error($exception->getMessage()); } } + + /** + * 文件选择器 + * @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'); + }); + } /** * 获取文件上传类型