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