Node.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class Node extends Model
  6. {
  7. protected $name = "auth_rule";
  8. /**
  9. * [getNodeInfo 获取节点数据]
  10. * @author
  11. */
  12. public function getNodeInfo($id)
  13. {
  14. $result = $this->field('id,title,pid,sort')->select()->toArray ();
  15. for($i=0;$i<count($result);$i++){
  16. $sort[] = $result[$i]['sort'];
  17. }
  18. array_multisort($sort, SORT_ASC, $result);
  19. $str = "";
  20. $role = new UserType();
  21. $rule = $role->getRuleById($id);
  22. if(!empty($rule)){
  23. $rule = explode(',', $rule);
  24. }
  25. foreach($result as $key=>$vo){
  26. $str .= '{ "id": "' . $vo['id'] . '", "pId":"' . $vo['pid'] . '", "name":"' . $vo['title'].'"';
  27. if(!empty($rule) && in_array($vo['id'], $rule)){
  28. $str .= ' ,"checked":1';
  29. }
  30. $str .= '},';
  31. }
  32. return "[" . substr($str, 0, -1) . "]";
  33. }
  34. /**
  35. * [getMenu 根据节点数据获取对应的菜单]
  36. * @author
  37. */
  38. public function getMenu($nodeStr="")
  39. {
  40. //超级管理员没有节点数组
  41. if($nodeStr == "SUPERAUTH"){
  42. if(session('?security') && session('security') == 010){
  43. $where = array();
  44. }else{
  45. $where = 'status = 1';
  46. }
  47. $result = Db::name('auth_rule')->where($where)->order('sort')->select();
  48. }elseif(empty($nodeStr)){
  49. $result = array();
  50. }else{
  51. $where = 'status = 1 and id in('.$nodeStr.')';
  52. $result = Db::name('auth_rule')->where($where)->order('sort')->select();
  53. }
  54. // $where = empty($nodeStr) ? array() : 'status = 1 and id in('.$nodeStr.')';
  55. $menu = prepareMenu($result);
  56. return $menu;
  57. }
  58. }