NewsCate.php 573 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 资讯分类
  5. class NewsCate extends Model
  6. {
  7. /**
  8. * 获取分类
  9. */
  10. public static function getCates()
  11. {
  12. $list = self::where(['is_deleted'=>0,'pid'=>0])->field('id,logo,title,pid')->order('sort desc')->select();
  13. foreach ($list as $v){
  14. $child_ren = self::where(['is_deleted'=>0,'pid'=>$v->id])->field('id,logo,title,pid')->order('sort desc')->select();
  15. if($child_ren) $v->child_ren = $child_ren;
  16. }
  17. return $list ? $list->toArray() : [];
  18. }
  19. }