From 08c885a47d1b3ead9ddbd2712a638dc6efa4ded9 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 27 Jun 2022 11:00:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/api/Upload.php | 38 +++++- .../api/{image.html => upload/document.html} | 0 app/admin/view/api/upload/image.html | 127 ++++++++++++++++++ app/admin/view/api/upload/video.html | 127 ++++++++++++++++++ 4 files changed, 291 insertions(+), 1 deletion(-) rename app/admin/view/api/{image.html => upload/document.html} (100%) create mode 100644 app/admin/view/api/upload/image.html create mode 100644 app/admin/view/api/upload/video.html diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index d1ada743e..4824686d8 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -154,7 +154,43 @@ class Upload extends Controller }, function (QueryHelper $query) { $query->where(['status' => 2])->order('id desc'); $query->like('name,hash')->dateBetween('create_at'); - }, realpath(__DIR__ . '/../../view/api/image.html')); + }); + } + + /** + * 视频选择器 + * @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->where(['status' => 2])->order('id desc'); + $query->like('name,hash')->dateBetween('create_at'); + }); + } + + /** + * 文档选择器 + * @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->where(['status' => 2])->order('id desc'); + $query->like('name,hash')->dateBetween('create_at'); + }); } /** diff --git a/app/admin/view/api/image.html b/app/admin/view/api/upload/document.html similarity index 100% rename from app/admin/view/api/image.html rename to app/admin/view/api/upload/document.html diff --git a/app/admin/view/api/upload/image.html b/app/admin/view/api/upload/image.html new file mode 100644 index 000000000..ae5f1684b --- /dev/null +++ b/app/admin/view/api/upload/image.html @@ -0,0 +1,127 @@ +
+
+
+ + 搜 索 +
+ +
+
+
+
+

+
+
+
+
+
+
+ + + + \ No newline at end of file diff --git a/app/admin/view/api/upload/video.html b/app/admin/view/api/upload/video.html new file mode 100644 index 000000000..ae5f1684b --- /dev/null +++ b/app/admin/view/api/upload/video.html @@ -0,0 +1,127 @@ +
+
+
+ + 搜 索 +
+ +
+
+
+
+

+
+
+
+
+
+
+ + + + \ No newline at end of file