dataLists(); } /** * @notes 获取详情接口 * @return \think\response\Json * @author cjhao * @date 2024/11/27 14:38 */ public function detail() { $params = $this->request->get(); $result = (new GoodsLogic())->detail($params['id']); return $this->success('',$result); } }