diff --git a/app/api/controller/UploadController.php b/app/api/controller/UploadController.php index 7e5e0cc51..8fc1b1f7e 100755 --- a/app/api/controller/UploadController.php +++ b/app/api/controller/UploadController.php @@ -44,6 +44,40 @@ class UploadController extends BaseApiController } } + /** + * @notes 上传视频 + * @return Json + * @author 段誉 + * @date 2021/12/29 16:27 + */ + public function video() + { + try { + $cid = $this->request->post('cid', 0); + $result = UploadService::video($cid); + return $this->success('上传成功', $result); + } catch (Exception $e) { + return $this->fail($e->getMessage()); + } + } + + /** + * @notes 上传文件 + * @return Json + * @author 段誉 + * @date 2021/12/29 16:27 + */ + public function file() + { + try { + $cid = $this->request->post('cid', 0); + $result = UploadService::file($cid); + return $this->success('上传成功', $result); + } catch (Exception $e) { + return $this->fail($e->getMessage()); + } + } + } \ No newline at end of file