From 648f7b7b1c1a3ea39c79ff9fe5e2c234532efe22 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 23 Nov 2022 14:06:06 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E4=BB=B6=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0?= 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 | 42 ++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index 38d5633a1..469a86f39 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -120,27 +120,6 @@ class Upload extends Controller $this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404); } - /** - * 更新文件状态 - * @login true - * @return void - */ - public function done() - { - $data = $this->_vali([ - 'id.require' => '编号不能为空!', - 'hash.require' => '哈希不能为空!', - 'uuid.value' => AdminService::getUserId(), - ]); - $file = SystemFile::mk()->where($data)->findOrEmpty(); - if ($file->isEmpty()) $this->error('文件不存在!'); - if ($file->save(['status' => 2])) { - $this->success('更新成功!'); - } else { - $this->error('更新失败!'); - } - } - /** * 文件上传入口 * @login true @@ -202,6 +181,27 @@ class Upload extends Controller } } + /** + * 更新文件状态 + * @login true + * @return void + */ + public function done() + { + $data = $this->_vali([ + 'id.require' => '编号不能为空!', + 'hash.require' => '哈希不能为空!', + 'uuid.value' => AdminService::getUserId(), + ]); + $file = SystemFile::mk()->where($data)->findOrEmpty(); + if ($file->isEmpty()) $this->error('文件不存在!'); + if ($file->save(['status' => 2])) { + $this->success('更新成功!'); + } else { + $this->error('更新失败!'); + } + } + /** * 文件选择器 * @login true