$id,'is_show'=>1])->order(['sort'=>'desc','id'=>'asc'])->findOrEmpty()->toArray(); if (!$category) { return []; } if ($category['level'] == 2) { $category = GoodsCategory::where(['id'=>$category['pid'],'is_show'=>1])->order(['sort'=>'desc','id'=>'asc'])->findOrEmpty()->toArray(); } $sons = GoodsCategory::where(['pid'=>$category['id'],'is_show'=>1])->order(['sort'=>'desc','id'=>'asc'])->select()->toArray(); return ['info'=>$category,'sons'=>$sons]; } }