截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Menu.php 490B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\JsonServer;
  5. use app\api\logic\MenuLogic;
  6. class Menu extends Api
  7. {
  8. public $like_not_need_login = ['lists'];
  9. /**
  10. * 获取菜单
  11. * type 1-首页菜单 2-个人中心菜单
  12. */
  13. public function lists()
  14. {
  15. $type = $this->request->get('type', 1);
  16. $list = MenuLogic::getMenu($type, $this->user_id);
  17. return JsonServer::success('获取成功', $list);
  18. }
  19. }