1.提交缺失的东西

This commit is contained in:
2025-05-20 17:55:06 +08:00
parent 22461277ee
commit 19684274c5
2 changed files with 38 additions and 1 deletions

View File

@ -39,7 +39,8 @@ class GoodsCategoryController extends BaseAdminController
*/
public function lists()
{
return $this->dataLists(new GoodsCategoryLists());
$category_tree = GoodsCategoryLogic::categoryThirdTree();
return $this->success('查询成功', $category_tree);
}