request->isPost()) { $params = $this->request->post(); $lists = DistributionGoodsLogic::lists($params); return JsonServer::success('', $lists); } // 显示分销商品列表页 $cate_list = MallCategoryLogic::categoryTreeeTree(); return view('', ['cate_list' => $cate_list]); } /** * @notes 查看商品佣金比例 * @return \think\response\View * @author Tab * @date 2021/9/2 17:57 */ public function detail() { $params = $this->request->get(); $detail = DistributionGoodsLogic::detail($params); return view('', ['detail' => $detail]); } }