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