NavMenuApi.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 老猫 <thinkcmf@126.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\api;
  12. use app\admin\model\NavMenuModel;
  13. class NavMenuApi
  14. {
  15. /**
  16. * 导航菜单模板数据源 用于模板设计
  17. * @param array $param
  18. * @return array|\PDOStatement|string|\think\Collection
  19. * @throws \think\db\exception\DataNotFoundException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. * @throws \think\exception\DbException
  22. */
  23. public function index($param = [])
  24. {
  25. $navMenuModel = new NavMenuModel();
  26. $result = $navMenuModel
  27. ->where(function (Query $query) use ($param) {
  28. if (!empty($param['keyword'])) {
  29. $query->where('name', 'like', "%{$param['keyword']}%");
  30. }
  31. if (!empty($param['id'])) {
  32. $query->where('nav_id', intval($param['id']));
  33. }
  34. })->select();
  35. return $result;
  36. }
  37. }