Category.php 834 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace app\api\controller;
  10. use app\api\service\Category as CategoryService;
  11. class Category extends Base {
  12. /**
  13. * 分类中心
  14. * @return \think\response\Json
  15. */
  16. public function index(){
  17. try{
  18. return $this->returnAjax("ok",1,CategoryService::getList());
  19. }catch (\Exception $ex){
  20. return $this->returnAjax($ex->getMessage(),0);
  21. }
  22. }
  23. }