Upload.php 328 B

1234567891011121314151617
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\exception\CatchException;
  4. use app\common\service\FileService;
  5. class Upload extends Base
  6. {
  7. /**
  8. * 图片上传
  9. */
  10. public function img()
  11. {
  12. return (new FileService($this->app))->exceptionClass(CatchException::class)->uploadImage('admin');
  13. }
  14. }