NavApi.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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\NavModel;
  13. use think\db\Query;
  14. class NavApi
  15. {
  16. /**
  17. * 导航模板数据源 用于模板设计
  18. * @param array $param
  19. * @return array|\PDOStatement|string|\think\Collection
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\ModelNotFoundException
  22. * @throws \think\exception\DbException
  23. */
  24. public function index($param = [])
  25. {
  26. $navModel = new NavModel();
  27. $result = $navModel
  28. ->where(function (Query $query) use ($param) {
  29. if (!empty($param['keyword'])) {
  30. $query->where('name', 'like', "%{$param['keyword']}%");
  31. }
  32. })->select();
  33. return $result;
  34. }
  35. }