Category.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\api\controller\article;
  13. use think\response\Json;
  14. use app\api\controller\Controller;
  15. use app\api\model\article\Category as CategoryModel;
  16. /**
  17. * 文章分类
  18. * Class Category
  19. * @package app\api\controller\article
  20. */
  21. class Category extends Controller
  22. {
  23. /**
  24. * 文章分类列表
  25. * @return Json
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\DbException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. */
  30. public function list(): Json
  31. {
  32. $model = new CategoryModel;
  33. $list = $model->getShowList();
  34. return $this->renderSuccess(compact('list'));
  35. }
  36. }