123456789101112131415161718192021222324252627 |
- <?php
- namespace app\api\controller;
- use app\api\service\Category as CategoryService;
- class Category extends Base {
-
- public function index(){
- try{
- return $this->returnAjax("ok",1,CategoryService::getList());
- }catch (\Exception $ex){
- return $this->returnAjax($ex->getMessage(),0);
- }
- }
- }
|